(time)
| 16 | |
| 17 | /* Call class */ |
| 18 | var Call = function(time) { |
| 19 | this.time = time; // time the call will take in ms |
| 20 | }; |
| 21 | |
| 22 | /* Call Center class */ |
| 23 | var CallCenter = function() { |
nothing calls this directly
no outgoing calls
no test coverage detected