blob: 745aebc591a0517722467b5cc988069face04dd1 [file] [log] [blame]
tomde8d9682014-08-27 01:11:43 -07001package org.onlab.onos.net.provider;
2
3import org.junit.Test;
4
5import static org.junit.Assert.assertEquals;
6
7/**
8 * Test of the base provider implementation.
9 */
10public class AbstractProviderTest {
11
12 @Test
13 public void basics() {
14 ProviderId id = new ProviderId("foo.bar");
15 TestProvider provider = new TestProvider(id);
16 assertEquals("incorrect id", id, provider.id());
17 }
18}