{
module.values( SomeValue.class );
module.services( DummyService.class );
}
};
ValueBuilder<Some> builder = app.module().newValueBuilder( Some.class );
Some prototype = builder.prototype();
Property<String> otherProperty = prototype.other();
otherProperty.set( "Abc" );
Some value = builder.newInstance();
Assert.assertEquals( value.other().get(), "Abc" );