public String getModuleName() {
return "com.totsp.gwittir.GwittirTest";
}
public void testFileDeclared() throws Exception {
TestFileDeclaredIntrospection bean = new TestFileDeclaredIntrospection();
Property p = Introspector.INSTANCE.getDescriptor(bean).getProperty("stringProperty");
System.out.println( "String property: "+p);
assertTrue( p.getName().equals("stringProperty") );
p = Introspector.INSTANCE.getDescriptor(bean).getProperty("intProperty");
assertTrue( p.getName().equals("intProperty"));