(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func Test_NewACPConversation(t *testing.T) { |
| 181 | mClock := quartz.NewMock(t) |
| 182 | mock := newMockAgentIO() |
| 183 | |
| 184 | conv := acpio.NewACPConversation(context.Background(), mock, nil, nil, nil, mClock) |
| 185 | |
| 186 | require.NotNil(t, conv) |
| 187 | } |
| 188 | |
| 189 | func Test_Messages_InitiallyEmpty(t *testing.T) { |
| 190 | mClock := quartz.NewMock(t) |
nothing calls this directly
no test coverage detected