public void givenFixture1WhenFindFromAnotherModuleThenCompositeTypeIsReturned()
throws ClassNotFoundException, AssemblyException
{
Application app = givenFixture1();
Module module = app.findModule( "Layer 1", "Module 1" ).newTransient( TestComposite1.class ).getModule();
module.classLoader().loadClass( TestComposite2.class.getName() );
}
@Mixins( TestMixin1.class )
public interface TestComposite1