Search in sources :

Example 1 with BasicRosterEntry

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);
}
Also used : BasicRosterEntry(jmri.BasicRosterEntry)

Example 2 with BasicRosterEntry

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);
}
Also used : BasicRosterEntry(jmri.BasicRosterEntry)

Aggregations

BasicRosterEntry (jmri.BasicRosterEntry)2