Commit 51b13636 authored by oliver.whitehead's avatar oliver.whitehead

assessment 01 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>Assessment01-18</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
public class AssessmentPartOne {
public int biggestOfThree(int num1, int num2, int num3)
{
// 01 - A Gentle Start
// Debug this method so it passes the unit test.
// Add comments beside any changes you make
if (num1>num2) //the less-than sign was changed to a greater-than sign
{
if (num3>num1)
{
return num3;
}
else
{
return num1;
}
}
else
{
if (num3>num2)
{
return num3;
}
else
{
return num2; //a missing semi-colon was added
}
}
}
public int sumNumbersBetween(int start, int end)
{
// 02 - Adding Across A Range
// Complete this method so that it adds together all
// the integers between start and end, but not including
// start or end
// This method should only deal with 0 and positive integers
// This method should return -1 if it cannot calculate the result
// You should comment your code explaining what each part does
int sumOfSquares = 0; //this will be our return value
if ( start > end //this section checks if the input values are usable and will return a positive number
|| start < 0
|| end < 0
|| (end - start) <= 1)
{
sumOfSquares = -1; //if the input values are not usable or will return a negative number, then the return value will be -1
}
else //if the values are usable, the program continues on
{
for (int lc = start+1; lc < end; lc++) //this is a loop that starts at the number one higher than our start and ends one before our end
{
sumOfSquares += lc; //each loop it adds the current number to the return sum
}
}
return sumOfSquares; //it then returns the total result
}
}
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 AssessmentPartOneTest {
public static AssessmentPartOne test;
@BeforeAll
static void setUpBeforeClass() throws Exception {
test = new AssessmentPartOne();
}
@ParameterizedTest
@DisplayName("Testing biggestOfThree")
@CsvSource({
"1,2,3,3",
"4,2,3,4",
"1,5,3,5",
"8,7,7,8",
"1,5,7,7"
})
void testCountVowels(int num1, int num2, int num3, int biggest) {
assertEquals(biggest, test.biggestOfThree(num1, num2, num3));
}
@ParameterizedTest
@DisplayName("Testing sumNumbersBetween")
@CsvSource({
"1,4,5",
"1,6,14",
"1,2,-1",
"-5,8,-1",
"5,3,-1",
"3,-1,-1"
})
void testSumNumbersBetween(int num1, int num2, int sum) {
assertEquals(sum, test.sumNumbersBetween(num1, num2));
}
}
public class Hub {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
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