Skip to content

Commit

Permalink
Add class diagrams.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkosman committed Jan 31, 2024
1 parent ed56dc0 commit d957a07
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
Binary file added UML/client_class_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UML/server_class_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UML/shared_class_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 9 additions & 10 deletions go_server/src/test/java/com/go_game/server/BotThreadTest.java
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
package com.go_game.server;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.atLeast;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import java.io.IOException;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;

import shared.enums.AgreementState;
import shared.enums.PlayerColors;
import shared.messages.BoardStateMsg;
import shared.messages.GameOverMsg;
import shared.messages.MoveMsg;
import shared.messages.MoveNotValidMsg;
import shared.messages.PlayerPassedMsg;
import shared.messages.ResultsNegotiationMsg;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.*;
import java.io.IOException;

@ExtendWith(MockitoExtension.class)
public class BotThreadTest {
Expand Down

0 comments on commit d957a07

Please sign in to comment.