Skip to content

Package: Answer

Answer

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 21
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 4
100%
M: 0 C: 1
100%

Coverage

1: package de.fhdw.gaming.ipspiel23.ht.domain;
2:
3: /**
4: * Represents an answer of the Heads or Tails game.
5: */
6: public enum Answer {
7:
8: /**
9: * Represents the answer "Heads".
10: */
11: HEADS,
12: /**
13: * Represents the answer "Tails".
14: */
15: TAILS,
16: /**
17: * Represents the answer "Edge".
18: */
19: EDGE
20: }