001    package com.oxygenxml.validate.nvdl;
002    
003    import com.thaiopensource.relaxng.util.Driver;
004    
005    import junit.framework.TestCase;
006    
007    public class ValidatorImplTest extends TestCase {
008    
009      public void testValidate() {
010        new Driver().doMain(
011            new String[] {"test/isoSchematron/Tournament.nvdl", 
012                            "test/isoSchematron/Tournament.xml"});
013        assertTrue(true);
014        
015        
016      }
017    }
018