Commit 1f5e804b authored by a.guest's avatar a.guest

initial commit

parents
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Programming01Resit2018</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
import java.util.ArrayList; // import the ArrayList class
public class ResitCode {
public int Fib_No(int position) {
}
public String pigLatin(String message)
{
}
}
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
class ResitCodeTest {
public static ResitCode test;
@BeforeAll
static void setUpBeforeClass() throws Exception {
test = new ResitCode();
}
@ParameterizedTest
@DisplayName("Testing Fib_No")
@CsvSource({
"1,0",
"2,1",
"3,1",
"4,2",
"8,13",
"14,233"
})
void testFib_No(int pos, int fibno) {
assertEquals(fibno,test.Fib_No(pos));
}
@ParameterizedTest
@DisplayName("Testing pigLatin")
@CsvSource({
"the quick brown fox,hetay uickqay rownbay oxfay",
"red dead redemption,edray eadday edemptionray",
"just hanging around,ustjay anginghay roundaay",
"shes a model and shes looking good,hessay aay odelmay ndaay hessay ookinglay oodgay"
})
void testPigLatin(String mess, String expected) {
assertEquals(expected,test.pigLatin(mess));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment