use of com.voxelgameslib.voxelgameslib.user.GamePlayer in project VoxelGamesLibv2 by VoxelGamesLib.
the class FeatureTest method getMockUser.
@Nonnull
public User getMockUser(@Nonnull String name) {
User user = Mockito.spy(new GamePlayer());
user.setDisplayName(name);
return user;
}
Aggregations