public void testSystemPropertyUsage_inactive()
throws Exception
{
System.getProperties().setProperty( "jcs.default.cacheattributes.MaxObjects", "6789" );
CompositeCacheManager mgr = CompositeCacheManager.getUnconfiguredInstance();
Properties props = PropertyLoader.loadProperties( "TestSystemPropertyUsage.ccf" );
mgr.configure( props, false );
JCS jcs = JCS.getInstance( "someCacheNotInFile" );
assertFalse( "System property value should not be reflected",
jcs.getCacheAttributes().getMaxObjects() == Integer.parseInt( props