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