(t *testing.T, e log.Entry)
| 71 | } |
| 72 | |
| 73 | func verifyServerError(t *testing.T, e log.Entry) { |
| 74 | a := assertions.New(t) |
| 75 | a.So(e.Level(), should.Equal, log.ErrorLevel) |
| 76 | a.So(e.Message(), should.Equal, "Server error") |
| 77 | } |
| 78 | |
| 79 | func TestLog(t *testing.T) { |
| 80 | a := assertions.New(t) |