@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightTestModuleLoader fml = new FloodlightTestModuleLoader();
Collection<Class<? extends IFloodlightModule>> mods
= new ArrayList<Class<? extends IFloodlightModule>>();
mods.add(LearningSwitch.class);
fml.setupModules(mods, null);
learningSwitch = (LearningSwitch) fml.getModuleByName(LearningSwitch.class);
mockFloodlightProvider =
(MockFloodlightProvider) fml.getModuleByName(MockFloodlightProvider.class);
// Build our test packet
this.testPacket = new Ethernet()
.setDestinationMACAddress("00:11:22:33:44:55")
.setSourceMACAddress("00:44:33:22:11:00")