test files for NewLineAtEOF check

Note: These files are checked in as binary files so the unit tests are
independent of how CVS messes around with newline characters when
these files are checked out
This commit is contained in:
Lars Kühne 2003-04-12 14:01:22 +00:00
parent 6cbf99acd8
commit 35139b1ca2
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2003
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
/**
* Test case for detection of an existing newline at EOF, using the
* NewlineAtEndOfFileCheck.
* @author Christopher Lenz
**/
public interface InputNoNewlineAtEndOfFile
{
}

View File

@ -0,0 +1,14 @@
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2003
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
/**
* Test case for detection of missing newlines at EOF, using the
* NewlineAtEndOfFileCheck.
* @author Christopher Lenz
**/
public interface InputNoNewlineAtEndOfFile
{
}