| 1 | package org.openengine.prototype.domain; |
| 2 | |
| 3 | public class Club implements Team { |
| 4 | |
| 5 | private String name; |
| 6 | private String nation; |
| 7 | private Squad squad = new Squad(); |
| 8 | |
| 9 | public Club(String name, String nation) { |
| 10 | this.name = name; |
| 11 | this.nation = nation; |
| 12 | } |
| 13 | |
| 14 | public String getName() { |
| 15 | return name; |
| 16 | } |
| 17 | |
| 18 | public String getNation() { |
| 19 | return this.nation; |
| 20 | } |
| 21 | |
| 22 | public Squad getSquad() { |
| 23 | return this.squad; |
| 24 | } |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected