Skip to content

Commit

Permalink
#652 Fixed code smells for: MoralDay2CutsceneTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb Murphy committed Oct 17, 2024
1 parent e08ee20 commit 6ce8753
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
import com.csse3200.game.components.cutscenes.scenes.Scene;
import com.csse3200.game.services.ResourceService;
import com.csse3200.game.services.ServiceLocator;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.util.List;

import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.mockito.Mockito.mock;

public class MoralDay2CutsceneTest {
class MoralDay2CutsceneTest {

private MoralDay2Cutscene moralDay2Cutscene;

Expand Down Expand Up @@ -61,5 +63,6 @@ void testScenesAreCreatedCorrectly() {
void testCreateEntities() {
// Just used for code coverage
moralDay2Cutscene.createEntities();
Assertions.assertTrue(true);
}
}

0 comments on commit 6ce8753

Please sign in to comment.