()
| 2178 | test("can implement abstract methods in JavaScript", function() { |
| 2179 | var expected = "my JS string"; |
| 2180 | function MyImplementation() { |
| 2181 | this.rv = expected; |
| 2182 | } |
| 2183 | MyImplementation.prototype.abstractMethod = function() { |
| 2184 | return this.rv; |
| 2185 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected