newLogger creates a test logger at Debug level.
(t *testing.T)
| 51 | |
| 52 | // newLogger creates a test logger at Debug level. |
| 53 | func newLogger(t *testing.T) slog.Logger { |
| 54 | t.Helper() |
| 55 | return slogtest.Make(t, &slogtest.Options{}).Leveled(slog.LevelDebug) |
| 56 | } |
| 57 | |
| 58 | func newModelThought(content, source string) recorder.ModelThoughtRecord { |
| 59 | return recorder.ModelThoughtRecord{ |
no test coverage detected