(t *testing.T)
| 120 | } |
| 121 | |
| 122 | func TestMultiWriteSyncerSync_NoErrorsOnDiscard(t *testing.T) { |
| 123 | ws := NewMultiWriteSyncer(&ztest.Discarder{}) |
| 124 | assert.NoError(t, ws.Sync(), "Expected error-free sync to /dev/null") |
| 125 | } |
| 126 | |
| 127 | func TestMultiWriteSyncerSync_AllCalled(t *testing.T) { |
| 128 | failed, second := &ztest.Buffer{}, &ztest.Buffer{} |
nothing calls this directly
no test coverage detected