作者:韩大妖丫头 | 来源:互联网 | 2023-10-10 13:59
本文整理了Java中org.codehaus.plexus.PlexusTestCase.getCustomConfigurationName()方法的一些代码示例,展
本文整理了Java中org.codehaus.plexus.PlexusTestCase.getCustomConfigurationName()
方法的一些代码示例,展示了PlexusTestCase.getCustomConfigurationName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。PlexusTestCase.getCustomConfigurationName()
方法的具体详情如下:
包路径:org.codehaus.plexus.PlexusTestCase
类名称:PlexusTestCase
方法名:getCustomConfigurationName
PlexusTestCase.getCustomConfigurationName介绍
暂无
代码示例
代码示例来源:origin: org.codehaus.plexus/plexus-container-default
String cOnfig= getCustomConfigurationName();
代码示例来源:origin: org.codehaus.plexus/com.springsource.org.codehaus.plexus.container
String cOnfig= getCustomConfigurationName();
代码示例来源:origin: org.eclipse.sisu/org.eclipse.sisu.plexus
private final ContainerConfiguration config()
{
final ContainerConfiguration cOnfig= new DefaultContainerConfiguration();
// Apply current test context
config.setName( "test" ).setContext( context() );
// Find per-test components XML
String path = getCustomConfigurationName();
if ( null == path )
{
path = getConfigurationName( null );
}
config.setContainerConfiguration( path );
// Per-test config customization
customizeContainerConfiguration( config );
return config;
}