Skip to content

Package: DilemmaAnswerType

DilemmaAnswerType

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 15
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.dilemma.domain;
2:
3: /**
4: * For representing possible answers in Gefangenen-Dilemma.
5: */
6: public enum DilemmaAnswerType {
7:
8: /**
9: * Possible answer of players.
10: */
11: DEFECT, COOPERATE;
12: }