Scott Resnik

Results 3 issues of Scott Resnik

Is it possible to have projects that are imported into the goomph generated work space be linked with the source repository(i.e. the equivalent of right-click on project, select "Share...") from...

enhancement

Add the following builder method: `public static Description createSuiteDescription(Class clazz, String name, Annotation... annotations)` which calls the `private Description(Class clazz, String displayName, Annotation... annotations)` constructor. This would be an alternative...

descriptions

With the following validator: ```java Validator validator = ValidatorBuilder.create().with(new GetterMustExistRule()).with(new SetterMustExistRule()) .with(new SetterTester()).with(new GetterTester()).build(); validator.validate(PojoClassFactory.getPojoClasses(getClass().getPackageName())); ``` This class passes: ```java public class SimpleClass { private final String message; private final...