GUI -- Resize and table directives clean up. Veil service given init function and unit tests.

Change-Id: I7c29db8f2c79e83e880c96854297c4a432e12d48
diff --git a/web/gui/src/main/webapp/tests/app/fw/layer/veil-spec.js b/web/gui/src/main/webapp/tests/app/fw/layer/veil-spec.js
new file mode 100644
index 0000000..155ebaa
--- /dev/null
+++ b/web/gui/src/main/webapp/tests/app/fw/layer/veil-spec.js
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * 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 -- Layer -- Veil Service - Unit Tests
+ */
+
+describe('factory: fw/layer/veil.js', function () {
+    var $log, $route, vs, fs, ks, gs;
+
+    beforeEach(module('onosLayer', 'onosNav', 'onosSvg', 'ngRoute'));
+
+    beforeEach(inject(function (_$log_, _$route_, VeilService, FnService,
+                                KeyService, GlyphService) {
+        $log = _$log_;
+        $route = _$route_;
+        vs = VeilService;
+        fs = FnService;
+        ks = KeyService;
+        gs = GlyphService;
+    }));
+
+    it('should define VeilService', function () {
+        expect(vs).toBeDefined();
+    });
+
+    it('should define api functions', function () {
+        expect(fs.areFunctions(vs, [
+            'init', 'show', 'hide', 'lostServer'
+        ])).toBeTruthy();
+    });
+});