| 3121 | ~Tap() { t_.Reset(); } // not sure if necessary |
| 3122 | |
| 3123 | inline void plan(int i) { |
| 3124 | HandleScope scope; |
| 3125 | v8::Local<v8::Value> arg = New(i); |
| 3126 | Call("plan", New(t_), 1, &arg); |
| 3127 | } |
| 3128 | |
| 3129 | inline void ok(bool isOk, const char *msg = NULL) { |
| 3130 | HandleScope scope; |
no test coverage detected