KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > grammars > Post13KeywordsAsIdentifiersOKTest


1 package com.puppycrawl.tools.checkstyle.grammars;
2
3 import com.puppycrawl.tools.checkstyle.DefaultConfiguration;
4 import com.puppycrawl.tools.checkstyle.BaseCheckTestCase;
5 import com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck;
6
7 import java.io.IOException JavaDoc;
8
9 /**
10  * @author Michael Studman
11  */

12 public class Post13KeywordsAsIdentifiersOKTest
13     extends BaseCheckTestCase
14 {
15     public void testUnexpectedChar() throws IOException JavaDoc, Exception JavaDoc
16     {
17         final DefaultConfiguration checkConfig =
18             createCheckConfig(MemberNameCheck.class);
19         verify(checkConfig, getPath("grammars/Post13KeywordsAsIdentifiersOK.java"), new String JavaDoc[0]);
20     }
21 }
22
Popular Tags