* Tests to make sure that our base DynamicSchemaProcessor works, with no
* replacement. Does not test Mondrian is able to connect with the schema
* definition.
*/
public void testDSPBasics() {
DynamicSchemaProcessor dsp = new BaseDsp();
Util.PropertyList dummy = new Util.PropertyList();
String processedSchema = "";
try {
processedSchema = dsp.processSchema("", dummy);
} catch (Exception e) {
// TODO some other assert failure message
assertEquals(0, 1);
}
Assert.assertEquals(TEMPLATE_SCHEMA, processedSchema);