service in module ngMock  
 A decorator for $controller with additional bindings parameter, useful when testing controllers of directives that use bindToController.  // Directive definition ...
myMod.directive('myDirective', {
  controller: 'MyDirectiveController',
  bindToController: {
    name: '@'
  }
});
// Controller definition ...
myMod.controller('MyDirectiveController', ['$log', function($log) {
  $log.info(this.name);
}]);
// In a test ...
describe('myDirectiveController', fun