Added method to check answers for all tests

This commit is contained in:
maj83 2020-04-28 11:08:24 +01:00
parent 09cc8936f7
commit f3a739cfa3

View file

@ -1,6 +1,9 @@
package uk.ac.aber.cs22120.group20.selfassessment;
import uk.ac.aber.cs22120.group20.json.WelshDictionary;
import uk.ac.aber.cs22120.group20.json.DictionaryEntry;
import java.util.ArrayList;
/**
* Abstract class contains the basic information that all the shared information between the
@ -12,13 +15,34 @@ import uk.ac.aber.cs22120.group20.json.WelshDictionary;
*/
public class Question {
public int correctAnswer = 0;
public int wrongAnswer =0;
/**
* Constructor for
* WordEnterQuestion that takes a WelshDictionary object that is being tested on as the parameter.
* @param correctAnswer
*/
public wordEnterQuestion(WelshDictionary correctAnswer){
public void wordEnterQuestion(DictionaryEntry correctAnswer){
}
public void checkAnswer(ArrayList<DictionaryEntry> listOfCorrectQuestions, ArrayList<String>listOfAnswers, boolean isEnglish){
if(isEnglish){
for(int i=0; i<listOfCorrectQuestions.size();i++){
if(listOfCorrectQuestions.get(i).getWelsh().equals(listOfAnswers.get(i))){
correctAnswer++;
}else wrongAnswer++;
}
}else{
for(int i=0; i<listOfCorrectQuestions.size();i++){
if(listOfCorrectQuestions.get(i).getEnglish().equals(listOfAnswers.get(i))){
correctAnswer++;
}else wrongAnswer++;
}
}
}
}