fixture-based NullableStuffInspectionTest

This commit is contained in:
peter
2014-02-10 18:34:10 +01:00
parent 3104edd1b9
commit 4757fc901f
18 changed files with 244 additions and 598 deletions
@@ -0,0 +1,14 @@
import org.jetbrains.annotations.*;
class Test {
@NotNull
String text;
public Test(@Nullable String a)
{
if (a == null)
this.text = "test";
else
this.text = a;
}
}