Coverage Report
livenotificationrun
measured on November 5, 2007 4:04:16 PM CET
up to the title page
org . codecover . simplejavaapp . model . AppModel . addBookToFile
Statement Coverage Branch Coverage Loop Coverage Strict Condition Coverage
public void addBookToFile(String fileId, Book book) 2 / 2 100 %
1 / 2 50 %
0 / 0 ---
0 / 1 0 %
AppModel.java
168       public void addBookToFile(String fileId, Book book) {
169           if (book == null) {
170               throw new NullPointerException("book == null");
171           }
172  
173           AppFile appFile = getAppFile(fileId);
174  
175           appFile.addBook(book);
176       }
created on November 17, 2007 7:07:00 PM CET with CodeCover