}
@Test
public void isLimelightVersionCompatible() throws Exception
{
Version version = About.version;
assertEquals(true, production.isLimelightVersionCompatible());
production.setMinimumLimelightVersion(version.toString());
assertEquals(true, production.isLimelightVersionCompatible());
final String minusOne = new Version(version.getMajor(), version.getMinor(), version.getPatch() - 1).toString();
production.setMinimumLimelightVersion(minusOne);
assertEquals(true, production.isLimelightVersionCompatible());
final String plusOne = new Version(version.getMajor(), version.getMinor(), version.getPatch() + 1).toString();
production.setMinimumLimelightVersion(plusOne);
assertEquals(false, production.isLimelightVersionCompatible());
}