Skip to content

Package: DemoSayYesStrategyFactory

DemoSayYesStrategyFactory

nameinstructionbranchcomplexitylinemethod
DemoSayYesStrategyFactory()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
create(DemoMoveFactory)
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: /*
2: * Copyright © 2021-2023 Fachhochschule für die Wirtschaft (FHDW) Hannover
3: *
4: * This file is part of ipspiel23-demo.
5: *
6: * Ipspiel23-demo is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
7: * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
8: * version.
9: *
10: * Ipspiel23-demo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
11: * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License along with ipspiel23-demo. If not, see
14: * <http://www.gnu.org/licenses/>.
15: */
16: package de.fhdw.gaming.ipspiel23.demo.strategy;
17:
18: import de.fhdw.gaming.ipspiel23.demo.domain.DemoStrategy;
19: import de.fhdw.gaming.ipspiel23.demo.domain.factory.DemoStrategyFactory;
20: import de.fhdw.gaming.ipspiel23.demo.moves.factory.DemoMoveFactory;
21:
22: /**
23: * Implements {@link DemoStrategyFactory} by creating a {@link DemoSayYesStrategy}.
24: */
25: public final class DemoSayYesStrategyFactory implements DemoStrategyFactory {
26:
27: @Override
28: public DemoStrategy create(final DemoMoveFactory moveFactory) {
29: return new DemoSayYesStrategy(moveFactory);
30: }
31: }