Skip to content

Package: AbstractAnswer

AbstractAnswer

nameinstructionbranchcomplexitylinemethod
AbstractAnswer()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: package de.fhdw.gaming.ipspiel23.freizeitgestaltung.move.impl;
2:
3: import de.fhdw.gaming.ipspiel23.freizeitgestaltung.move.Answer;
4:
5: /**
6: * Allowed Answer for the game.
7: *
8: */
9: public abstract class AbstractAnswer implements Answer {
10:
11: /**
12: * Constructor.
13: */
14: protected AbstractAnswer() {
15: // is empty
16: }
17: }