mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-04 06:22:58 +00:00
Merge pull request #201 from kevinramharak/fix-configuration-path-java-11-#200
fix tests and configuration
This commit is contained in:
commit
6e4b2358af
@ -77,6 +77,7 @@
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.7.2</version>
|
||||
<configuration>
|
||||
<forkMode>never</forkMode>
|
||||
<workingDirectory>./src/main/resources</workingDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
@ -5,12 +5,29 @@ import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class MemoryTest {
|
||||
|
||||
ServerConfiguration getConfig() {
|
||||
String filePath = "config.properties";
|
||||
|
||||
if (!new File(filePath).exists()) {
|
||||
File fallback = new File("Server/src/main/resources/", filePath);
|
||||
if (fallback.exists()) {
|
||||
filePath = fallback.getAbsolutePath();
|
||||
} else {
|
||||
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
|
||||
}
|
||||
}
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration(filePath);
|
||||
return config;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getSet() {
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
Memory memory = new Memory(memorySize);
|
||||
|
||||
memory.set(1, 1);
|
||||
@ -28,12 +45,9 @@ public class MemoryTest {
|
||||
|
||||
@Test
|
||||
public void write() {
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
Memory memory = new Memory(memorySize);
|
||||
|
||||
|
||||
assertTrue(memory.write(0, new char[memorySize], 0, memorySize));
|
||||
assertFalse(memory.write(0, new char[memorySize], 0, memorySize + 1));
|
||||
assertFalse(memory.write(0, new char[memorySize], 0, -1));
|
||||
|
@ -9,17 +9,32 @@ import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class AddInstructionTest {
|
||||
|
||||
ServerConfiguration getConfig() {
|
||||
String filePath = "config.properties";
|
||||
|
||||
if (!new File(filePath).exists()) {
|
||||
File fallback = new File("Server/src/main/resources/", filePath);
|
||||
if (fallback.exists()) {
|
||||
filePath = fallback.getAbsolutePath();
|
||||
} else {
|
||||
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
|
||||
}
|
||||
}
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration(filePath);
|
||||
return config;
|
||||
}
|
||||
|
||||
/**
|
||||
* ADD mem/reg, mem/reg
|
||||
*/
|
||||
@Test
|
||||
public void addTargetTarget() {
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
|
||||
//Memory
|
||||
Memory memory = new Memory(memorySize);
|
||||
@ -129,8 +144,7 @@ public class AddInstructionTest {
|
||||
*/
|
||||
@Test
|
||||
public void addTargetImm() {
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
|
||||
//Memory
|
||||
Memory memory = new Memory(memorySize);
|
||||
|
@ -7,13 +7,29 @@ import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class AndInstructionTest {
|
||||
|
||||
ServerConfiguration getConfig() {
|
||||
String filePath = "config.properties";
|
||||
|
||||
if (!new File(filePath).exists()) {
|
||||
File fallback = new File("Server/src/main/resources/", filePath);
|
||||
if (fallback.exists()) {
|
||||
filePath = fallback.getAbsolutePath();
|
||||
} else {
|
||||
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
|
||||
}
|
||||
}
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration(filePath);
|
||||
return config;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void executeTargetTarget() {
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
|
||||
//Memory
|
||||
Memory memory = new Memory(memorySize);
|
||||
@ -53,9 +69,7 @@ public class AndInstructionTest {
|
||||
|
||||
@Test
|
||||
public void executeTargetImm() {
|
||||
|
||||
ServerConfiguration config = new ServerConfiguration("config.properties");
|
||||
int memorySize = config.getInt("memory_size");
|
||||
int memorySize = getConfig().getInt("memory_size");
|
||||
|
||||
//Memory
|
||||
Memory memory = new Memory(memorySize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user