GUI: Added {view}-spec.js files for all main views

Change-Id: I75a50ae2689d0ab7863c8bb0546ec72ef8e9e7ea
diff --git a/web/gui/src/main/webapp/tests/app/view/app/app-spec.js b/web/gui/src/main/webapp/tests/app/view/app/app-spec.js
new file mode 100644
index 0000000..60cadd2
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/app/app-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- App Controller - Unit Tests
+ */
+describe('Controller: OvAppCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovApp', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvAppCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/cluster/cluster-spec.js b/web/gui/src/main/webapp/tests/app/view/cluster/cluster-spec.js
new file mode 100644
index 0000000..449dc24
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/cluster/cluster-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Cluster Controller - Unit Tests
+ */
+describe('Controller: OvClusterCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovCluster', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvClusterCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/flow/flow-spec.js b/web/gui/src/main/webapp/tests/app/view/flow/flow-spec.js
new file mode 100644
index 0000000..48ca797
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/flow/flow-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Flow Controller - Unit Tests
+ */
+describe('Controller: OvFlowCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovFlow', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvFlowCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/group/group-spec.js b/web/gui/src/main/webapp/tests/app/view/group/group-spec.js
new file mode 100644
index 0000000..8722502
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/group/group-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Group Controller - Unit Tests
+ */
+describe('Controller: OvGroupCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovGroup', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvGroupCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/host/host-spec.js b/web/gui/src/main/webapp/tests/app/view/host/host-spec.js
new file mode 100644
index 0000000..a6ad93b
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/host/host-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Host Controller - Unit Tests
+ */
+describe('Controller: OvHostCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovHost', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvHostCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/intent/intent-spec.js b/web/gui/src/main/webapp/tests/app/view/intent/intent-spec.js
new file mode 100644
index 0000000..9d2e4b1
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/intent/intent-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Intent Controller - Unit Tests
+ */
+describe('Controller: OvIntentCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovIntent', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast', 'ovTopo'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvIntentCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/link/link-spec.js b/web/gui/src/main/webapp/tests/app/view/link/link-spec.js
new file mode 100644
index 0000000..e3635fe
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/link/link-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Link Controller - Unit Tests
+ */
+describe('Controller: OvLinkCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovLink', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvLinkCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/meter/meter-spec.js b/web/gui/src/main/webapp/tests/app/view/meter/meter-spec.js
new file mode 100644
index 0000000..2078b4e
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/meter/meter-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Meter Controller - Unit Tests
+ */
+describe('Controller: OvMeterCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovMeter', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvMeterCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/partition/partition-spec.js b/web/gui/src/main/webapp/tests/app/view/partition/partition-spec.js
new file mode 100644
index 0000000..aaf6db2
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/partition/partition-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Partition Controller - Unit Tests
+ */
+describe('Controller: OvPartitionCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovPartition', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvPartitionCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/port/port-spec.js b/web/gui/src/main/webapp/tests/app/view/port/port-spec.js
new file mode 100644
index 0000000..f28fe2a
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/port/port-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Port Controller - Unit Tests
+ */
+describe('Controller: OvPortCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovPort', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvPortCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/processor/processor-spec.js b/web/gui/src/main/webapp/tests/app/view/processor/processor-spec.js
new file mode 100644
index 0000000..3de8671
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/processor/processor-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Processor Controller - Unit Tests
+ */
+describe('Controller: OvProcessorCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovProcessor', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvProcessorCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/settings/settings-spec.js b/web/gui/src/main/webapp/tests/app/view/settings/settings-spec.js
new file mode 100644
index 0000000..3d48cc6
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/settings/settings-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Settings Controller - Unit Tests
+ */
+describe('Controller: OvSettingsCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovSettings', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvSettingsCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/topo/topo-spec.js b/web/gui/src/main/webapp/tests/app/view/topo/topo-spec.js
new file mode 100644
index 0000000..cb7fcde
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/topo/topo-spec.js
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Topo Controller - Unit Tests
+ */
+describe('Controller: OvTopoCtrl', function () {
+
+    var $scope, $controller, createController, d3Topo, d3Map;
+
+    beforeEach(module('ovTopo', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        d3Topo = d3.select('body').append('div').attr('id', 'ov-topo');
+        d3Topo.append('svg');
+
+        createController = function () {
+            return $controller('OvTopoCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    afterEach(function () {
+        d3.select('#ov-topo').remove();
+        d3.select('#ov-map').remove();
+    });
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/topo2/topo2-spec.js b/web/gui/src/main/webapp/tests/app/view/topo2/topo2-spec.js
new file mode 100644
index 0000000..a6ca7b2
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/topo2/topo2-spec.js
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Topo2 Controller - Unit Tests
+ */
+describe('Controller: OvTopo2Ctrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovTopo2', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        d3Topo = d3.select('body').append('div').attr('id', 'ov-topo2');
+        topoSvg = d3Topo.append('svg').attr('id', 'topo2');
+        topoSvg.append('g').attr('id', 'topo2-noDevsLayer')
+
+        createController = function () {
+            return $controller('OvTopo2Ctrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});
diff --git a/web/gui/src/main/webapp/tests/app/view/tunnel/tunnel-spec.js b/web/gui/src/main/webapp/tests/app/view/tunnel/tunnel-spec.js
new file mode 100644
index 0000000..3d4bb99
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/view/tunnel/tunnel-spec.js
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ ONOS GUI -- Tunnel Controller - Unit Tests
+ */
+describe('Controller: OvTunnelCtrl', function () {
+
+    var $scope, $controller, createController;
+
+    beforeEach(module('ovTunnel', 'onosRemote', 'onosLayer', 'onosSvg',
+        'onosNav', 'ngRoute', 'onosWidget', 'onosMast'));
+
+    beforeEach(inject(function ($rootScope, _$controller_) {
+        $scope = $rootScope.$new();
+        $controller = _$controller_;
+
+        createController = function () {
+            return $controller('OvTunnelCtrl', {
+                '$scope': $scope,
+            });
+        };
+    }));
+
+    it('should create controller', function () {
+        var controller = createController();
+    });
+
+});