[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,9 +1,10 @@
import java.io.IOException;
class Test {
/**
* @throws IOException in some case
* <warning>@throws</warning> IOException
*/
* @throws IOException in some case
* <warning descr="'throws' tag description is missing"><warning descr="Duplicate @throws or @exception tag for exception 'java.io.IOException'">@throws</warning></warning> IOException
*/
void a() throws IOException{
throw new IOException();
}