-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Labels
bugSomething isn't workingSomething isn't workingpostponedThis issue/PR is postponed until there is a very good reason (e.g. $$$) to implement it.This issue/PR is postponed until there is a very good reason (e.g. $$$) to implement it.
Milestone
Description
Assume an LLM responds with something like
package com.eval;
import org.junit.jupiter.api.Test;
import org.mockito.InMockito;
import static org.junit.jupiter.api.Assertions.*;
class PlainTest {
@Test
void testPlain() {
InMockito.when(Plain::plain).thenReturn(null);
Plain.plain();
InMockito.verify(Plain::plain);
}
}The test file needs mockito to run, and we need to make sure that this is available when executing the tests.
Response from custom-fireworks_accounts_fireworks_models_qwen2-72b-instruct
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpostponedThis issue/PR is postponed until there is a very good reason (e.g. $$$) to implement it.This issue/PR is postponed until there is a very good reason (e.g. $$$) to implement it.