use of org.opencord.aaa.impl.AaaTestBase.MockCfgService in project aaa by opencord.
the class AaaIntegrationTest method setUp.
/**
* Sets up the services required by the AAA application.
*/
@Before
public void setUp() {
aaa = new AaaManager();
aaa.netCfgService = new TestNetworkConfigRegistry();
aaa.coreService = new CoreServiceAdapter();
aaa.packetService = new MockPacketService();
aaa.cfgService = new MockCfgService();
aaa.activate(new AaaTestBase.MockComponentContext());
}
Aggregations