TestMIDLet Coverage Report

Metrics: CCN: 1 Methods: 1
NCSS: 1 Classes: -
JVDC: 100% Packages: -
Need help?
Package # Classes Line Coverage Branch Coverage Method Coverage
KITExcellence 14
88.5% 
89.5% 
89.1% 

Class Line Coverage Branch Coverage Method Coverage
GameModel
N/A  
N/A  
N/A  

 1  
 package KITExcellence;
 2  
 
 3  
 /**
 4  
  *        GameModel class provides an interface for game
 5  
  *  objects to encapsulate it's game state. 
 6  
  */
 7  
 public interface GameModel {
 8  
         
 9  
         /**
 10  
          * Process the game logic on the object model.
 11  
          * 
 12  
          * @param keys the state of the keys.
 13  
          * @see javax.microedition.lcdui.GameCanvas
 14  
          * 
 15  
          * @param width Width of the drawing area.
 16  
          * @param height Height of the drawing area.
 17  
          */
 18  
         public void update(int keys, int width, int height, float time_delta);
 19  
         
 20  
 }

Legend:
Instrumented line CCN: Cyclomatic Complexity
Covered line NCSS: Non-Commenting Source Statement
Uncovered line JVDC: JaVaDoc Comment