Skip to content

Commit

Permalink
Rename main package
Browse files Browse the repository at this point in the history
  • Loading branch information
jolice committed Jun 13, 2020
1 parent 02028ac commit bde80e5
Show file tree
Hide file tree
Showing 58 changed files with 3 additions and 17 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
import io.riguron.mocks.matcher.ArgumentMatcher;
import org.junit.jupiter.api.Test;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Random;

import static io.riguron.mocks.Mocks.*;
Expand Down Expand Up @@ -37,22 +39,6 @@ void overrideWithSameArgsTwice() {
}



interface UserRepository {

int getAge(String name);

String findNameById(int id);

int count();

void updateName(int id, String name);
}

interface User {
}


@Test
void overridePrefixStyle() {
SomeInterface someInterface = mock(SomeInterface.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import static org.junit.jupiter.api.Assertions.assertNotNull;

@ExtendWith(MocksExtension.class)
public class ExtensionTest {
public class YourTest {

@Mock
private SomeInterface someInterface;
Expand Down

0 comments on commit bde80e5

Please sign in to comment.