EMMA Coverage Report (generated Wed Oct 27 18:09:45 CEST 2010) |
---|
[all classes][qsqs.ueberdeckungen] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
WahrFalsch.java | 0% (0/1) | 0% (0/3) | 0% (0/31) | 0% (0/9) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class WahrFalsch | 0% (0/1) | 0% (0/3) | 0% (0/31) | 0% (0/9) |
TestC2C3_AND (boolean, boolean): void | 0% (0/1) | 0% (0/14) | 0% (0/4) | |
TestC2C3_OR (boolean, boolean): void | 0% (0/1) | 0% (0/14) | 0% (0/4) | |
WahrFalsch (): void | 0% (0/1) | 0% (0/3) | 0% (0/1) |
1 | package qsqs.ueberdeckungen; |
2 | |
3 | public class WahrFalsch { |
4 | static public void TestC2C3_AND(boolean a, boolean b) throws Exception{ |
5 | if(a && b){ |
6 | System.out.println("Beide Wahr"); |
7 | }else{ |
8 | throw new Exception("Nicht beide wahr"); |
9 | } |
10 | |
11 | } |
12 | static public void TestC2C3_OR(boolean a, boolean b) throws Exception{ |
13 | if(a || b){ |
14 | System.out.println("a oder b Wahr"); |
15 | }else{ |
16 | throw new Exception("keiner Wahr"); |
17 | } |
18 | |
19 | } |
20 | } |
[all classes][qsqs.ueberdeckungen] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |