Removed unecessary exceptions.

This commit is contained in:
Erik C. Thauvin 2018-07-11 03:35:10 -07:00
parent 21f74b2729
commit fc48de28b4

View file

@ -49,8 +49,7 @@ public class VersionInfoTest {
private VersionInfo versionInfo = new VersionInfo();
@Test
public void testGetVersion()
throws Exception {
public void testGetVersion() {
Assert.assertEquals(versionInfo.getVersion(), "1.0.0", "getVersion(1.0.0)");
@ -80,8 +79,7 @@ public class VersionInfoTest {
}
@Test
public void testSetGet()
throws Exception {
public void testSetGet() {
versionInfo.setMajor(1);
@ -122,8 +120,7 @@ public class VersionInfoTest {
}
@Test
public void testVersionInfo()
throws Exception {
public void testVersionInfo() {
final Version version = new VersionTest();
versionInfo = new VersionInfo(version);