/** * Test method for {@link * org.hbird.business.groundstation.configuration.GroundStationDriverConfiguration#setPostContactDelta(long)} * . */ @Test public void testSetPostContactDelta() { assertEquals( GroundStationDriverConfiguration.DEFAULT_POST_CONTACT_DELTA, config.getPostContactDelta()); config.setPostContactDelta(554532L); assertEquals(554532L, config.getPostContactDelta()); config.setPostContactDelta(9L); assertEquals(9L, config.getPostContactDelta()); }
/** * Test method for {@link * org.hbird.business.groundstation.configuration.GroundStationDriverConfiguration#GroundStationDriverConfiguration(java.lang.String, * java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, int, * java.lang.String, java.lang.Long, int, int, long, long)} . */ @SuppressWarnings("deprecation") @Test public void testGroundStationDriverConfigurationStringStringIntStringStringStringIntStringLongIntIntLongLong() { config = new GroundStationDriverConfiguration( "SERVICE-ID", "BETA-VERSION", 4000L, "GS-ID", "DEVICE-NAME", "DEVICE-TYPE", 3002, "localhost", 2345L, 6674L, 9831L); assertEquals("SERVICE-ID", config.getServiceId()); assertEquals("BETA-VERSION", config.getServiceVersion()); assertEquals(4000, config.getHeartBeatInterval()); assertEquals("GS-ID", config.getGroundstationId()); assertEquals("DEVICE-NAME", config.getDeviceName()); assertEquals("DEVICE-TYPE", config.getDeviceType()); assertEquals(3002, config.getDevicePort()); assertEquals("localhost", config.getDeviceHost()); assertEquals(2345, config.getDevicePollInterval()); assertEquals(6674L, config.getPreContactDelta()); assertEquals(9831L, config.getPostContactDelta()); }