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:
parent
6cbf99acd8
commit
35139b1ca2
|
|
@ -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
|
||||
{
|
||||
}
|
||||
|
|
@ -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
|
||||
{
|
||||
}
|
||||
Loading…
Reference in New Issue