All files / log / _test_handler.ts

100.00% Branches 0/0
100.00% Lines 7/7
1
2
3
4
5
6
7
8
9
10
 
x3
 
x3
x3
 
x3
x42
x42
x3








// Copyright 2018-2025 the Deno authors. MIT license.
import { BaseHandler } from "./base_handler.ts";

export class TestHandler extends BaseHandler {
  messages: string[] = [];

  override log(msg: string) {
    this.messages.push(msg);
  }
}