Skip to content

Commit

Permalink
Added blank tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mghosh00 committed Jan 21, 2024
1 parent be683b9 commit 750d00c
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 29 deletions.
13 changes: 0 additions & 13 deletions .idea/libraries/Gradle__junit_junit_4_13_2.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml

This file was deleted.

14 changes: 12 additions & 2 deletions .idea/modules/RugbyWorldCup.test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ sourceSets {
}
}
dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
testImplementation 'org.mockito:mockito-core:3.12.4'
}
57 changes: 57 additions & 0 deletions src/test/java/mvg/solo/team/TeamTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
package mvg.solo.team;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

class TeamTest {

@BeforeEach
void setUp() {
}

@Test
void getTeams() {
}

@Test
void getTeam() {
}

@Test
void getRatingPoints() {
}

@Test
void updateRatingPoints() {
}

@Test
void testToString() {
}

@Test
void homeKitString() {
}

@Test
void alternateKitString() {
}

@Test
void countryName() {
}

@Test
void initialRatingPoints() {
}

@Test
void homeKit() {
}

@Test
void alternateKit() {
}
}

0 comments on commit 750d00c

Please sign in to comment.