diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-14 17:49:28 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-14 17:49:28 -0600 |
| commit | 564e140de454c78d7e6d34044bb78f53bd0b2bf3 (patch) | |
| tree | f85607ebfb2575bce94b5618250ebd957f965f6e /test/integration/logger.go | |
| parent | 7797dffa1412ca0e5a0ba95eb8aa39cddce8d10e (diff) | |
test: remove old oidc test server
Diffstat (limited to 'test/integration/logger.go')
| -rw-r--r-- | test/integration/logger.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/integration/logger.go b/test/integration/logger.go new file mode 100644 index 0000000..86660bc --- /dev/null +++ b/test/integration/logger.go @@ -0,0 +1,15 @@ +package test + +import ( + "testing" + + "github.com/testcontainers/testcontainers-go" +) + +type Logger struct { + testing.TB +} + +func (t *Logger) Accept(l testcontainers.Log) { + t.Logf("%s", l.Content) +} |
