Adds a couple of unit tests for the browser

This commit is contained in:
Markil3
2021-09-15 12:13:21 -06:00
parent 4f8b70b2f4
commit b5b1d495f0
4 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
package edu.regis.universeplayer;
import java.io.Serializable;
/**
* A test class for pinging the browser.
*/
public class NumberPing implements Serializable
{
public int number;
public NumberPing()
{
this(0);
}
public NumberPing(int number)
{
this.number = number;
}
}