mirror of
https://github.com/CarmJos/EasyConfiguration.git
synced 2026-06-04 18:48:20 +08:00
19 lines
498 B
Java
19 lines
498 B
Java
import cc.carm.lib.configuration.source.loader.PathGenerator;
|
|
import org.junit.Test;
|
|
|
|
public class NameTest {
|
|
|
|
|
|
@Test
|
|
public void onTest() {
|
|
|
|
System.out.println(PathGenerator.covertPathName("LoveGames")); // -> love-games
|
|
System.out.println(PathGenerator.covertPathName("EASY_GAME")); // -> easy-game
|
|
System.out.println(PathGenerator.covertPathName("F")); //-? f
|
|
System.out.println(PathGenerator.covertPathName("Test123123")); // -? test123123123
|
|
|
|
}
|
|
|
|
|
|
}
|