This commit is contained in:
MattBDev
2019-09-08 18:43:47 -04:00
parent 758c343e52
commit fd6fbebd69
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package com.github.intellectualsites.plotsquared.plot;
import org.junit.Test;
public class PlotVersionTest {
@Test public void tryParse() {
//These are all random values chosen to form the test class.
PlotVersion version = new PlotVersion("4.340", "f06903f", "19.08.05");
System.out.println(version.build);
}
}