Skip to content
Snippets Groups Projects
Commit d605071a authored by Zhang Li's avatar Zhang Li
Browse files

Remove warnings

parent 9bef866b
No related branches found
No related tags found
No related merge requests found
Pipeline #48229 passed
package persistence;
import model.GameModel;
import model.common.Coordinate;
import model.exceptions.OperationException;
import model.zone.ResidentialZoneFactory;
import org.junit.jupiter.api.Test;
public class DatabaseTest {
@Test
public void runDatabaseMethods() throws OperationException {
GameModel gm = new GameModel(10,10);
public void runDatabaseMethods() {
GameModel gm = new GameModel(10, 10);
gm.initialize();
gm.regularUpdate(2, null);
Database.save(gm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment