[tests] message texts in Javadoc highlighting tests

This commit is contained in:
Roman Shevchenko
2017-04-07 18:48:45 +02:00
parent a31c85b322
commit 2a47148d94
22 changed files with 100 additions and 104 deletions

View File

@@ -1,8 +1,7 @@
class Test {
/**
* @param <error>i</error> here description goes
* <warning>@return</warning>
*/
int d(){return 1;}
}
/**
* @param <error descr="Cannot resolve symbol 'i'">i</error> here description goes
* <warning descr="'@return' tag description is missing">@return</warning>
*/
int d() { return 1; }
}