describe('dataLossPreventionProfileController', function () { 'use strict'; var ctrl, $controller, $rootScope, $scope; beforeEach(module('myitsmApp')); beforeEach(inject(function (_$controller_, _$rootScope_) { $controller = _$controller_; $rootScope = _$rootScope_; $scope = $rootScope.$new(); ctrl = $controller('dataLossPreventionProfileController', { $scope: $scope }); })); it('should exist', function () { expect(ctrl).toBeDefined(); }); });