Add l2agent as the provider of connectivity/forwarding service for test/debug bundle...
[affinity.git] / l2agent / src / test / java / org / opendaylight / l2agent / L2AgentTest.java
diff --git a/l2agent/src/test/java/org/opendaylight/l2agent/L2AgentTest.java b/l2agent/src/test/java/org/opendaylight/l2agent/L2AgentTest.java
new file mode 100644 (file)
index 0000000..d08c4e7
--- /dev/null
@@ -0,0 +1,29 @@
+\r
+/*\r
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
+ *\r
+ * This program and the accompanying materials are made available under the\r
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
+ * and is available at http://www.eclipse.org/legal/epl-v10.html\r
+ */\r
+\r
+package org.opendaylight.affinity.l2agent;\r
+\r
+\r
+import junit.framework.TestCase;\r
+\r
+import org.junit.Assert;\r
+import org.junit.Test;\r
+\r
+public class L2AgentTest extends TestCase {\r
+\r
+        @Test\r
+        public void testL2AgentCreation() {\r
+\r
+                L2Agent ah = null;\r
+                ah = new L2Agent();\r
+                Assert.assertTrue(ah != null);\r
+\r
+        }\r
+\r
+}\r