CS代写 COMP1110 Exam, Question 3.2

package comp1110.exam;

import org.junit.Before;
import org.junit.Rule;

Copyright By PowCoder代写 加微信 powcoder

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代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com