Clarify reason for Disabled annotation on test classes.
Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
parent
ba5ba010b8
commit
395645aaef
|
@ -22,7 +22,7 @@ import java.net.URL;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Disabled;
|
import org.junit.jupiter.api.Disabled;
|
||||||
|
|
||||||
@Disabled
|
@Disabled("Not a test case")
|
||||||
public class TestConfiguration
|
public class TestConfiguration
|
||||||
{
|
{
|
||||||
public static int VALUE = 77;
|
public static int VALUE = 77;
|
||||||
|
|
|
@ -29,7 +29,7 @@ import java.util.Set;
|
||||||
import org.eclipse.jetty.util.annotation.Name;
|
import org.eclipse.jetty.util.annotation.Name;
|
||||||
import org.junit.jupiter.api.Disabled;
|
import org.junit.jupiter.api.Disabled;
|
||||||
|
|
||||||
@Disabled
|
@Disabled("Not a test case")
|
||||||
public class TestConfiguration extends HashMap<String, Object>
|
public class TestConfiguration extends HashMap<String, Object>
|
||||||
{
|
{
|
||||||
public static int VALUE = 77;
|
public static int VALUE = 77;
|
||||||
|
|
Loading…
Reference in New Issue