use of jmri.BasicRosterEntry in project JMRI by JMRI.
the class AbstractThrottleTest method testSetRosterEntry.
/**
* Test of setRosterEntry method, of class AbstractThrottle.
*/
public void testSetRosterEntry() {
BasicRosterEntry re = null;
AbstractThrottle instance = new AbstractThrottleImpl();
instance.setRosterEntry(re);
}
use of jmri.BasicRosterEntry in project JMRI by JMRI.
the class AbstractThrottleTest method testGetRosterEntry.
/**
* Test of getRosterEntry method, of class AbstractThrottle.
*/
public void testGetRosterEntry() {
AbstractThrottle instance = new AbstractThrottleImpl();
BasicRosterEntry expResult = null;
BasicRosterEntry result = instance.getRosterEntry();
assertEquals(expResult, result);
}
Aggregations