* @param schemaTest a collection of Schema Unit Tests
*/
private void setUpSchemaTests(final String suiteName, final TestSuite suite,
final SchemaTest schemaTest) {
for (int i = 0; i < schemaTest.getUnitTestCaseCount(); i++) {
UnitTestCase tc = schemaTest.getUnitTestCase(i);
// Little trick: getUnitTestCaseChoice should not be null at this point
String name = tc.getUnitTestCaseChoice().getSchema();
if (name.equals("*")) {
File[] list = _testFile.listFiles();
for (int j = 0; j < list.length; ++j) {
String fileName = list[j].getName();
// FIXME: It would be better to use a file filter and to make