diff --git a/src/test/webapp/directives/helixchart.js b/src/test/webapp/directives/helixchart.js
new file mode 100644
index 000000000..82e368818
--- /dev/null
+++ b/src/test/webapp/directives/helixchart.js
@@ -0,0 +1,20 @@
+'use strict';
+
+describe('Directive: helixChart', function () {
+
+ // load the directive's module
+ beforeEach(module('pinpointApp'));
+
+ var element,
+ scope;
+
+ beforeEach(inject(function ($rootScope) {
+ scope = $rootScope.$new();
+ }));
+
+ it('should make hidden element visible', inject(function ($compile) {
+ element = angular.element('');
+ element = $compile(element)(scope);
+ expect(element.text()).toBe('this is the helixChart directive');
+ }));
+});
diff --git a/src/test/webapp/directives/sidebartitle.js b/src/test/webapp/directives/sidebartitle.js
new file mode 100644
index 000000000..b9428240c
--- /dev/null
+++ b/src/test/webapp/directives/sidebartitle.js
@@ -0,0 +1,20 @@
+'use strict';
+
+describe('Directive: sidebarTitle', function () {
+
+ // load the directive's module
+ beforeEach(module('pinpointApp'));
+
+ var element,
+ scope;
+
+ beforeEach(inject(function ($rootScope) {
+ scope = $rootScope.$new();
+ }));
+
+ it('should make hidden element visible', inject(function ($compile) {
+ element = angular.element('');
+ element = $compile(element)(scope);
+ expect(element.text()).toBe('this is the sidebarTitle directive');
+ }));
+});
diff --git a/src/test/webapp/services/filterconfig.js b/src/test/webapp/services/filterconfig.js
new file mode 100644
index 000000000..451c17b0a
--- /dev/null
+++ b/src/test/webapp/services/filterconfig.js
@@ -0,0 +1,18 @@
+'use strict';
+
+describe('Service: filterConfig', function () {
+
+ // load the service's module
+ beforeEach(module('pinpointApp'));
+
+ // instantiate service
+ var filterConfig;
+ beforeEach(inject(function (_filterConfig_) {
+ filterConfig = _filterConfig_;
+ }));
+
+ it('should do something', function () {
+ expect(!!filterConfig).toBe(true);
+ });
+
+});
diff --git a/src/test/webapp/services/filteredmaputil.js b/src/test/webapp/services/filteredmaputil.js
new file mode 100644
index 000000000..716aede0d
--- /dev/null
+++ b/src/test/webapp/services/filteredmaputil.js
@@ -0,0 +1,18 @@
+'use strict';
+
+describe('Service: filteredMapUtil', function () {
+
+ // load the service's module
+ beforeEach(module('pinpointApp'));
+
+ // instantiate service
+ var filteredMapUtil;
+ beforeEach(inject(function (_filteredMapUtil_) {
+ filteredMapUtil = _filteredMapUtil_;
+ }));
+
+ it('should do something', function () {
+ expect(!!filteredMapUtil).toBe(true);
+ });
+
+});
diff --git a/src/test/webapp/services/helixchartvo.js b/src/test/webapp/services/helixchartvo.js
new file mode 100644
index 000000000..76eb61135
--- /dev/null
+++ b/src/test/webapp/services/helixchartvo.js
@@ -0,0 +1,18 @@
+'use strict';
+
+describe('Service: helixChartVo', function () {
+
+ // load the service's module
+ beforeEach(module('pinpointApp'));
+
+ // instantiate service
+ var helixChartVo;
+ beforeEach(inject(function (_helixChartVo_) {
+ helixChartVo = _helixChartVo_;
+ }));
+
+ it('should do something', function () {
+ expect(!!helixChartVo).toBe(true);
+ });
+
+});
diff --git a/src/test/webapp/services/sidebartitlevo.js b/src/test/webapp/services/sidebartitlevo.js
new file mode 100644
index 000000000..9be65e3ec
--- /dev/null
+++ b/src/test/webapp/services/sidebartitlevo.js
@@ -0,0 +1,18 @@
+'use strict';
+
+describe('Service: SidebarTitleVo', function () {
+
+ // load the service's module
+ beforeEach(module('pinpointApp'));
+
+ // instantiate service
+ var SidebarTitleVo;
+ beforeEach(inject(function (_SidebarTitleVo_) {
+ SidebarTitleVo = _SidebarTitleVo_;
+ }));
+
+ it('should do something', function () {
+ expect(!!SidebarTitleVo).toBe(true);
+ });
+
+});