Skip to content

Commit 7d9ef78

Browse files
committedMay 2, 2023
Initial commit
0 parents  commit 7d9ef78

11 files changed

+270
-0
lines changed
 

‎.classpath

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
5+
<attributes>
6+
<attribute name="module" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
10+
<classpathentry kind="output" path="bin"/>
11+
</classpath>

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

‎.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*

‎.project

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Java_JUnit</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
<filteredResources>
18+
<filter>
19+
<id>1683052568812</id>
20+
<name></name>
21+
<type>30</type>
22+
<matcher>
23+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
24+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
25+
</matcher>
26+
</filter>
27+
</filteredResources>
28+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

‎.settings/org.eclipse.jdt.core.prefs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=17
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
13+
org.eclipse.jdt.core.compiler.release=enabled
14+
org.eclipse.jdt.core.compiler.source=17

‎README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Java_JUnit
2+
3+
Project developed to start studies on Unit Tests in java with JUnit.
4+
5+
# Calculator:
6+
7+
A class called Calculator was created, and it contains the methods:
8+
Addition, subtraction, multiplication and division.
9+
10+
Tests are run in the TestCalculator class. There I used the
11+
annotations:
12+
@BeforeAll --> For executing a block of code before all others
13+
@DisplayName --> Used to name the test
14+
@Test --> To identify the method as a test for JUnit
15+
@AfterEach --> For executing code after each unit test
16+
17+
# Vote
18+
19+
A class named Vote was created with the "rule" method.
20+
This method receveives an "age" parameter to return if at this age
21+
the person Cannot, Can or Must vote according to the brazillian
22+
polices.
23+
24+
Vote tests are in TestVote.java file.

‎src/projectPack/Calculator.java

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package projectPack;
2+
3+
public class Calculator {
4+
public double addition(double num1, double num2) {
5+
return num1 + num2;
6+
}
7+
public double subtraction(double num1, double num2) {
8+
return 1;
9+
}
10+
public double multiplication(double num1, double num2) {
11+
return num1 * num2;
12+
}
13+
public double division(double num1, double num2) {
14+
return 0.0;
15+
}
16+
}

‎src/projectPack/Vote.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package projectPack;
2+
3+
/*Brazilian Voting Age Rule*/
4+
5+
public class Vote {
6+
public String rule(int age) {
7+
if(age < 0) {
8+
throw new IllegalArgumentException("Age cannot be negative");
9+
} else if (age < 16) {
10+
return "Cannot";
11+
} else if (age < 18) {
12+
return "Can";
13+
} else if (age < 70) {
14+
return "Must";
15+
} else {
16+
return "Can";
17+
}
18+
}
19+
}

‎src/test/TestCalculator.java

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
package test;
2+
import projectPack.Calculator;
3+
4+
import static org.junit.jupiter.api.Assertions.*;
5+
6+
import org.junit.jupiter.api.AfterAll;
7+
import org.junit.jupiter.api.AfterEach;
8+
import org.junit.jupiter.api.BeforeAll;
9+
import org.junit.jupiter.api.DisplayName;
10+
import org.junit.jupiter.api.Test;
11+
12+
class TestCalculator {
13+
Calculator calc = new Calculator();
14+
15+
@BeforeAll
16+
static void setup() {
17+
for(int x = 0; x < 100; x++) {
18+
System.out.println(x);
19+
}
20+
}
21+
22+
@DisplayName("Testing the addition method: 2 + 2 should be 4")
23+
@Test
24+
void twoPlusTwoIsFour() {
25+
assertEquals(4, calc.addition(2, 2));
26+
}
27+
28+
@DisplayName("Testing the addition method: 19 + 20 != 40")
29+
@Test
30+
void testCalculatorAdditionWithError(){
31+
assertNotEquals(40, calc.addition(19, 20));
32+
// If assertEquals(40, calc.addition(19, 20));
33+
// Expected <40.0> but was: <39.0>
34+
}
35+
36+
@DisplayName("Testing the subtraction method: 15 - 5 != 1")
37+
@Test
38+
void zeroPlusZeroShouldntBeNull() {
39+
assertNotEquals(1, calc.subtraction(15, 5));
40+
//Subtraction function return 1
41+
//Expected: Not equal but was <1.0>
42+
}
43+
44+
@DisplayName("Testing the multiplication method: ")
45+
@Test
46+
void shouldThrowAnError() {
47+
assertEquals(20*2, calc.multiplication(20, 2));
48+
}
49+
50+
@DisplayName("Testing the division method: 20 / 2 should be 10")
51+
@Test
52+
void testCalculatorDivision() {
53+
assertEquals(10, calc.division(20, 2));
54+
// Test a broken function... This function returns 0.0
55+
// Function returns 0.0
56+
// Expected <10.0> but was: <0.0>
57+
}
58+
59+
@AfterEach
60+
void printThisAfterEachTest() {
61+
System.out.println("The previous test was executed");
62+
}
63+
64+
@AfterAll
65+
static void printThisAfterAllTests() {
66+
System.out.println("Test finished...");
67+
}
68+
}

‎src/test/TestVote.java

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
package test;
2+
import projectPack.Vote;
3+
4+
import static org.junit.Assert.assertEquals;
5+
import static org.junit.Assert.assertNotEquals;
6+
import static org.junit.Assert.assertThrows;
7+
import static org.junit.Assert.assertTrue;
8+
9+
import org.junit.jupiter.api.Test;
10+
11+
/*Test Brazilian Voting Age Rule*/
12+
13+
public class TestVote {
14+
static Vote vote = new Vote();
15+
16+
@Test
17+
void ageShouldntBeNegative() {
18+
assertThrows(IllegalArgumentException.class, () -> {
19+
vote.rule(-11);
20+
});
21+
}
22+
23+
@Test
24+
void testTypeReturned() {
25+
assertTrue(vote.rule(22).getClass().getSimpleName().equals("String"));
26+
}
27+
28+
/**/
29+
30+
@Test
31+
void fifteenCannotVote() {
32+
assertEquals("Cannot", vote.rule(15));
33+
}
34+
35+
@Test
36+
void sixteenCanVote() {
37+
assertEquals("Can", vote.rule(16));
38+
}
39+
40+
@Test
41+
void nineteenMustVote(){
42+
assertEquals("Must", vote.rule(19));
43+
}
44+
45+
@Test
46+
void sixtyFourMustVote() {
47+
assertEquals("Must", vote.rule(64));
48+
}
49+
50+
@Test
51+
void eightyOneCanVote() {
52+
assertEquals("Can", vote.rule(81));
53+
}
54+
55+
/**/
56+
57+
@Test
58+
void nineteenMust(){
59+
assertNotEquals("Can", vote.rule(19));
60+
}
61+
62+
}

0 commit comments

Comments
 (0)
Please sign in to comment.