use of com.tvd12.properties.file.struct.PropertiesBean in project properties-file by tvd12.
the class PropertiesClassTest method notWrapperTest.
@Test
public void notWrapperTest() {
PropertiesBean map = new PropertiesBean(ClassA.class);
map.put("length", 1);
map.put("value", "zzz");
map.put("value", "yyy");
}
use of com.tvd12.properties.file.struct.PropertiesBean in project properties-file by tvd12.
the class PropertiesClassTest method transformClazzValidCaseTest.
@Test
public void transformClazzValidCaseTest() {
PropertiesBean map = new PropertiesBean(ClassE.class);
map.put("clazz", ClassA.class.toString());
}
Aggregations