Write unit test methods for the methods in the following code snippet. The methods that need to have unit test methods are bold. package ObstaclesWarrior; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.File; import java.io.PrintWriter; import org.junit.Test; /** * Unit test */ public class MainTest { @Test public void ReadBoardFromFileTest() { final String FILE_NAME = "Board.dat"; //Either dynamically create the Board.dat file or assume it already exists /*File file = new File(FILE_NAME); PrintWriter printToFile = new PrintWriter(file); printToFile.println("4 4"); printToFile.println("0 2"); printToFile.println("2 2"); printToFile.println("0 # # #"); printToFile.println("# -3 # -5"); printToFile.println("# # # #"); printToFile.println("# # -1 #"); printToFile.close(); */ //Create start and exit positions to pass to the method. //These objects will be set with actual values from the //board file by your code inside the ReadBoardFromFile() method Position actualStartPosition = new Position(0, 0); Position actualExitPosition = new Position(0, 0); //These are the expected values for the start and exit postions Position expectedStartPosition = new Position(0, 2); Position expectedExitPosition = new Position(2, 2); //Create the expected array with the data String[][] expectedBoardArray = { {"0", "#", "#", "#" }, {"#", "-3", "#", "-5" }, {"#", "#", "#", "#" }, {"#", "#", "-1", "#" }, }; //Invoke the ReadBoardFromFile() method and capture the returned array String[][] actualBoardArray = Main.ReadBoardFromFile( FILE_NAME, actualStartPosition, actualExitPosition); //Check if the start and exit positions match if((expectedStartPosition.getX() != actualStartPosition.getX())|| (expectedStartPosition.getY() != actualStartPosition.getY())) { assertTrue("Start position does not match", false); } if((expectedExitPosition.getX() != actualExitPosition.getX())|| (expectedExitPosition.getY() != actualExitPosition.getY())) { assertEquals("Exit position does not match",false); } //Compare the actualBoardArray with the testBoardArray. //Size and data must match. //Make sure the number of rows match assertArrayEquals("Board array read from file does not match expected array", expectedBoardArray, actualBoardArray ); } @Test public void WriteBoardToFileTest() { } @Test public void GenerateDirectionTest() { } @Test public void MoveWarriorTest() { } @Test public void CalculateWarriorScoreTest() { } @Test public void DisplayResultsTest() { }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write unit test methods for the methods in the following code snippet. The methods that need to have unit test methods are bold.

package ObstaclesWarrior;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import java.io.File;
import java.io.PrintWriter;

import org.junit.Test;

/**
* Unit test
*/
public class MainTest {

@Test
public void ReadBoardFromFileTest()
{
final String FILE_NAME = "Board.dat";

//Either dynamically create the Board.dat file or assume it already exists
/*File file = new File(FILE_NAME);

PrintWriter printToFile = new PrintWriter(file);

printToFile.println("4 4");
printToFile.println("0 2");
printToFile.println("2 2");
printToFile.println("0 # # #");
printToFile.println("# -3 # -5");
printToFile.println("# # # #");
printToFile.println("# # -1 #");

printToFile.close();
*/
//Create start and exit positions to pass to the method.
//These objects will be set with actual values from the
//board file by your code inside the ReadBoardFromFile() method
Position actualStartPosition = new Position(0, 0);
Position actualExitPosition = new Position(0, 0);

//These are the expected values for the start and exit postions
Position expectedStartPosition = new Position(0, 2);
Position expectedExitPosition = new Position(2, 2);

//Create the expected array with the data
String[][] expectedBoardArray = {
{"0", "#", "#", "#" },
{"#", "-3", "#", "-5" },
{"#", "#", "#", "#" },
{"#", "#", "-1", "#" },
};

//Invoke the ReadBoardFromFile() method and capture the returned array
String[][] actualBoardArray = Main.ReadBoardFromFile( FILE_NAME,
actualStartPosition,
actualExitPosition);

//Check if the start and exit positions match
if((expectedStartPosition.getX() != actualStartPosition.getX())||
(expectedStartPosition.getY() != actualStartPosition.getY()))
{
assertTrue("Start position does not match", false);
}

if((expectedExitPosition.getX() != actualExitPosition.getX())||
(expectedExitPosition.getY() != actualExitPosition.getY()))
{
assertEquals("Exit position does not match",false);
}

//Compare the actualBoardArray with the testBoardArray.
//Size and data must match.
//Make sure the number of rows match
assertArrayEquals("Board array read from file does not match expected array",
expectedBoardArray,
actualBoardArray );
}

@Test
public void WriteBoardToFileTest()
{


}

@Test
public void GenerateDirectionTest()
{

}

@Test
public void MoveWarriorTest()
{

}

@Test
public void CalculateWarriorScoreTest()
{

}

@Test
public void DisplayResultsTest()
{

}
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Developing computer interface
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education