package comp1110.exam;
import org.junit.Before;
import org.junit.Rule;
Copyright By Assignmentchef assignmentchef
import org.junit.Test;
import org.junit.rules.Timeout;
import java.util.Set;
import static org.junit.Assert.assertEquals;
* COMP1110 Exam, Question 3.2
public class Q3GetMaxArticlesInCategoryTest {
public Timeout globalTimeout = Timeout.millis(500);
Integer[] articleIds = new Integer[]{31353, 8091, 50223, 72758, 159979, 159973, 25781, 142540};
String[] names = new String[]{
The Hitchhikers Guide to the Galaxy,
s Holistic Detective Agency,
BBC Radio 4,
Marvin the Paranoid Android,
Mos Def};
String[] categories = new String[]{
Radio Station,
Fictional Character,
Fictional Character,
Technology,
Person};
// FIXME add one ore more JUnit unit tests that test the getMaxArticlesInCategory() method of the Q3Wiki class
CS: assignmentchef QQ: 1823890830 Email: [email protected]
Reviews
There are no reviews yet.