KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jester > Report


1 package jester;
2
3 public interface Report {
4     public static final int INITIAL_SCORE = -1;
5
6     void setNumberOfFilesThatWillBeTested(int numberOfFilesThatWillBeTested);
7     void startFile(String JavaDoc sourceFileName, IgnoreListDocument originalContents) throws SourceChangeException;
8     void finishFile(String JavaDoc sourceFileName) throws SourceChangeException;
9
10     int fileScore();
11     int totalScore();
12
13     void changeThatCausedTestsToFail(int indexOfChange, String JavaDoc valueChangedFrom, String JavaDoc valueChangedTo) throws SourceChangeException;
14     void changeThatDidNotCauseTestsToFail(int indexOfChange, String JavaDoc valueChangedFrom, String JavaDoc valueChangedTo) throws SourceChangeException;
15 }
Popular Tags