std/log/_test_handler.ts
Asher Gomez 901eef2ad2
test(log): cleanup test files (#4641)
* test(log): cleanup test files

* work

* work
2024-04-24 17:02:32 +09:00

11 lines
272 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { BaseHandler } from "./base_handler.ts";
export class TestHandler extends BaseHandler {
public messages: string[] = [];
override log(msg: string) {
this.messages.push(msg);
}
}