[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.webtools] JSDT tests errors/failures


I've checked out from CVS following plugins:

org.eclipse.wst.jsdt.core
org.eclipse.wst.jsdt.core.tests.compiler
org.eclipse.wst.jsdt.core.tests.model

However when I try to see how good is JSDT to use its API, and try to run even simple tests, such as org.eclipse.wst.jsdt.core.tests.dom.ASTTest, I see that there is a lot of errors (7) and failures (47) in 168 tests. I see assertations that will fail alwais:

  assertTrue(TagElement.TAG_SINCE.equals("@since")); //$NON-NLS-1$
because of
  public static final String TAG_SINCE = " "; //$NON-NLS-1$

  So, this raises question - is JSDT really working if it has no tests?