diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-04-22 04:32:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 16:32:25 -0400 |
commit | 911975059a50e71632d33567da7000a97aa28f22 (patch) | |
tree | 336ccc3a6ca64ab0967daf4cbbd8f908f4dac078 /tests | |
parent | 65fe0fb22cfb264f0b756065d0c3ce7a17d7e55b (diff) | |
download | gitea-911975059a50e71632d33567da7000a97aa28f22.tar.gz gitea-911975059a50e71632d33567da7000a97aa28f22.zip |
Improve test logger (#24235)
Before, there was a `log/buffer.go`, but that design is not general, and
it introduces a lot of irrelevant `Content() (string, error) ` and
`return "", fmt.Errorf("not supported")` .
And the old `log/buffer.go` is difficult to use, developers have to
write a lot of `Contains` and `Sleep` code.
The new `LogChecker` is designed to be a general approach to help to
assert some messages appearing or not appearing in logs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testlogger.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/testlogger.go b/tests/testlogger.go index a7cc27a926..7cac5bbe33 100644 --- a/tests/testlogger.go +++ b/tests/testlogger.go @@ -180,11 +180,6 @@ func (log *TestLogger) Init(config string) error { return nil } -// Content returns the content accumulated in the content provider -func (log *TestLogger) Content() (string, error) { - return "", fmt.Errorf("not supported") -} - // Flush when log should be flushed func (log *TestLogger) Flush() { } |