Code coverage report for common/header.js

Statements: 75% (3 / 4)      Branches: 100% (0 / 0)      Functions: 50% (1 / 2)      Lines: 75% (3 / 4)      Ignored: none     

All files » common/ » header.js
1 2 3 4 5 6 7 8 9 10 111     1       1      
(function() {
  'use strict';
 
  function headerCtrl($log) {
    $log.debug('Header loaded');
  }
 
  angular.module('common.header', [])
    .controller('HeaderCtrl', headerCtrl);
})();