private LayerAssembly createConfigurationLayer( ApplicationAssembly applicationAssembly )
throws AssemblyException
{
LayerAssembly layer = applicationAssembly.layer( LAYER_CONFIGURATION );
ModuleAssembly configModule = layer.module( MODULE_CONFIG );
configModule.entities( NativeConfiguration.class ).visibleIn( Visibility.application );
new EntityTestAssembler().assemble( configModule );
return layer;
}