TestMIDLet Coverage Report |
|
Package | # Classes | Line Coverage | Branch Coverage | Method Coverage | ||||||||||||
KITExcellence | 14 |
|
|
|
Class | Line Coverage | Branch Coverage | Method Coverage | |||||||||
GameView |
|
|
|
1 | package KITExcellence; |
|
2 | import javax.microedition.lcdui.Graphics; |
|
3 | ||
4 | /** |
|
5 | * GameView class provides an interface |
|
6 | * for the game objects views. |
|
7 | */ |
|
8 | public interface GameView { |
|
9 | ||
10 | /** |
|
11 | * Renders the object's view. |
|
12 | * |
|
13 | * @param g Graphics instance. |
|
14 | */ |
|
15 | public void render(Graphics g); |
|
16 | ||
17 | } |
Instrumented line | CCN: | Cyclomatic Complexity | |
Covered line | NCSS: | Non-Commenting Source Statement | |
Uncovered line | JVDC: | JaVaDoc Comment |