File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
checkstyle-config/src/main/resources
test/src/test/java/com/google/cloud/samples/test Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,7 @@ limitations under the License.
2424 <!-- Suppress checks for generated code. -->
2525 <suppress files =" [/\\]target[/\\]" checks =" .+" />
2626 <suppress files =" .*AutoValue_.*\.java$" checks =" .+" />
27+
28+ <!-- Suppress AbbreviationAsWordInName for tests -->
29+ <suppress files =" .*/src/test/java/.*\.java" checks =" AbbreviationAsWordInName" />
2730</suppressions >
Original file line number Diff line number Diff line change 3030 */
3131@ RunWith (JUnit4 .class )
3232public class AppTest {
33- @ Test public void main_printsHelloWorld () {
33+ @ Test public void main_printsHelloWorldIT () {
3434 ByteArrayOutputStream out = new ByteArrayOutputStream ();
3535 System .setOut (new PrintStream (out ));
3636
You can’t perform that action at this time.
0 commit comments