blob: c2e5cfc4aa635d69587b4b7f4123c4a3b11da8a6 [file] [log] [blame]
package org.onlab.onos.net.provider;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Test of the base provider implementation.
*/
public class AbstractProviderTest {
@Test
public void basics() {
ProviderId id = new ProviderId("of", "foo.bar");
TestProvider provider = new TestProvider(id);
assertEquals("incorrect id", id, provider.id());
}
}