Code coverage report for hello/hello_controller.js

Statements: 100% (5 / 5)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (5 / 5)      Ignored: none     

All files » hello/ » hello_controller.js
1 2 3 4 5 6 7 8 9 101 1 1     1   1    
const $inject = ['HelloService'];
const HelloController = function (helloService) {
  this.test = helloService.hello();
};
 
HelloController.$inject = $inject;
 
module.exports = HelloController;