summaryrefslogtreecommitdiff
path: root/java/java-tests/testSrc/com/intellij/codeInsight/template/postfix/templates/NotNullPostfixTemplateTest.java
blob: ab3b93cd86252a29a52c23ee5dfce8e759a62648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.intellij.codeInsight.template.postfix.templates;

import org.jetbrains.annotations.NotNull;

/**
 * @author ignatov
 */
public class NotNullPostfixTemplateTest extends PostfixTemplateTestCase {
  @NotNull
  @Override
  protected String getSuffix() { return "notnull"; }

  public void testSimple()            { doTest(); }
  public void testNn()                { doTest(); }
  public void testSecondStatement()   { doTest(); }
}