eg.triviaGameExample.Player Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
The newest version!
package eg.triviaGameExample;
public class Player {
private String name;
public Player(String aPlayerName) {
name = aPlayerName;
}
public String getName() {
return name;
}
}