/**
* Test of the valid locations for a specified class.
*/
public void testLocationsForClass()
{
JDOMetaDataManager mgr = new JDOMetaDataManager(new NucleusContext("JDO", null));
// Try typical JDO class name
String className = "org.jpox.samples.store.Product";
List locations = mgr.getValidMetaDataLocationsForClass("jdo", null, className);
assertTrue("Locations returned from MetaData Manager was null!", locations != null);