Package dtool.parser.ddoc

Source Code of dtool.parser.ddoc.DDocParser_Test

package dtool.parser.ddoc;


import org.junit.Test;

import descent.core.ddoc.DdocParser;
import dtool.tests.CommonDToolTest;

// skeleton test
public class DDocParser_Test extends CommonDToolTest {
 
  @Test
  public void testname() throws Exception { testname$(); }
  public void testname$() throws Exception {
     DdocParser ddocParser = new DdocParser("");
     ddocParser.parse();
    
     new DdocParser("/+\n+/").parse();
     new DdocParser("/+ \n+/").parse();
     new DdocParser("/+").parse();
     new DdocParser("/+ +/").parse();
    
     new DdocParser("/** **/").parse();
  }
 
}
 
TOP

Related Classes of dtool.parser.ddoc.DDocParser_Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.