blob: 0062468ea0efc1afad048fdf9ccb462dba745b0f [file] [log] [blame]
Brian O'Connor520c0522014-11-23 23:50:47 -08001package org.onlab.onos.net.intent;
2
3import org.junit.After;
4import org.junit.Before;
5import org.onlab.onos.core.IdGenerator;
6
7public abstract class AbstractIntentTest {
8
9 protected IdGenerator idGenerator = new MockIdGenerator();
10
11 @Before
12 public void setUp() throws Exception {
13 Intent.bindIdGenerator(idGenerator);
14 }
15
16 @After
17 public void tearDown() {
18 Intent.unbindIdGenerator(idGenerator);
19 }
20}