()
| 1068 | var methods; |
| 1069 | |
| 1070 | function addSpies() { |
| 1071 | methods.forEach(function(m) { |
| 1072 | var obj = m[0]; |
| 1073 | var k = m[1]; |
| 1074 | spyOn(obj, k).and.callThrough(); |
| 1075 | }); |
| 1076 | } |
| 1077 | |
| 1078 | function assertSpies(msg, exp) { |
| 1079 | methods.forEach(function(m, i) { |
no outgoing calls
no test coverage detected
searching dependent graphs…