Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++
JAVA
PHP
SQL

Assignments


BibleReader


Stage01_StudentVerseTest.java

package bibleReader.tests;

//If you organize imports, the following import might be removed and you will
//not be able to find certain methods. If you can't find something, copy the
//commented import statement below, paste a copy, and remove the comments.
//Keep this commented one in case you organize imports multiple times.
//
//import static org.junit.jupiter.api.Assertions.*;

import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;

/**
 * Tests for the Verse class.
 * @author ?
 */
public class Stage01_StudentVerseTest {
	// Put fields here for objects that will be used in several tests.
	
	
	/*
	 * Anything that should be done before each test.
	 * For instance, you might create some objects here that are used by several of the tests.
	 */
	@BeforeEach
	public void setUp() throws Exception {
		// TODO Create objects that the tests will use here.
		// You need to make them fields so they can be seen in the test methods.
	}

	/*
	 * Anything that should be done at the end of each test.  
	 * Most likely you won't need to do anything here.
	 */
	@AfterEach
	public void tearDown() throws Exception {
		// You probably won't need anything here.
	}

	/*
	 * Add as many test methods as you think are necessary. Don't forget the @Test before each test method.
	 */
	
	@Test
	public void fakeTest() {
		// Replace with your first test--rename it appropriately.
	}
	
}