示例#1
0
  @Test
  @Category({P1, FAST, UNIT})
  @Description(
      "Test incomplete VJET etype should parse non-null jst. "
          + "Also it should have bare minimum information baout vjet type")
  public void testProcessEType() {
    CompilationUnitDeclaration ast = prepareAst("eTypeTranslatorTestFile.txt", null);
    IJstType jstType = SyntaxTreeFactory2.createJST(ast, new TranslateCtx());

    assertNotNull(jstType);
    assertTrue(jstType.isEnum());
  }