Commit 772e6d76 authored by Lückemeyer's avatar Lückemeyer
Browse files

added initial structure and replicated demo test

parent 3b9ae54f
*.class
# IntelliJ
/.idea
/out
*.iml
# DTT example Unittest OpenJDK11 JUnit5 Testrunner
This is the source code repository for the DTT example unittest with JUnit5.
Documentation for this is done with GitLab Pages using MkDocs and is available here:
[https://transfer.hft-stuttgart.de/pages/dtt/documentation][pages-link]
If you don't want to open the Webpage or it is not available for whatever reason,
the documentation root is found [here][docs-root]
[docs-root]: https://transfer.hft-stuttgart.de/gitlab/dtt/documentation/-/blob/master/docs/index.md
[pages-link]: https://transfer.hft-stuttgart.de/pages/dtt/documentation
de.hftstuttgart.ip2;CalculatorTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorSecondTest {
private Calculator calculator = new Calculator();
@Test
public void add2() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub2() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult2() throws Exception {
assertEquals(15, calculator.mult(5, 2), 0.1);
}
@Test
public void div2() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum2() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorTest
{
private Calculator calculator = new Calculator();
@Test
public void add() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult() throws Exception {
assertEquals(15, calculator.mult(5, 3), 0.1);
}
@Test
public void div() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
*.class
# IntelliJ
/.idea
/out
*.iml
# DTT example Unittest OpenJDK11 JUnit5 Testrunner
This is the source code repository for the DTT example unittest with JUnit5.
Documentation for this is done with GitLab Pages using MkDocs and is available here:
[https://transfer.hft-stuttgart.de/pages/dtt/documentation][pages-link]
If you don't want to open the Webpage or it is not available for whatever reason,
the documentation root is found [here][docs-root]
[docs-root]: https://transfer.hft-stuttgart.de/gitlab/dtt/documentation/-/blob/master/docs/index.md
[pages-link]: https://transfer.hft-stuttgart.de/pages/dtt/documentation
de.hftstuttgart.ip2;CalculatorTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorSecondTest {
private Calculator calculator = new Calculator();
@Test
public void add2() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub2() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult2() throws Exception {
assertEquals(15, calculator.mult(5, 2), 0.1);
}
@Test
public void div2() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum2() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorTest
{
private Calculator calculator = new Calculator();
@Test
public void add() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult() throws Exception {
assertEquals(15, calculator.mult(5, 3), 0.1);
}
@Test
public void div() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
*.class
# IntelliJ
/.idea
/out
*.iml
# DTT example Unittest OpenJDK11 JUnit5 Testrunner
This is the source code repository for the DTT example unittest with JUnit5.
Documentation for this is done with GitLab Pages using MkDocs and is available here:
[https://transfer.hft-stuttgart.de/pages/dtt/documentation][pages-link]
If you don't want to open the Webpage or it is not available for whatever reason,
the documentation root is found [here][docs-root]
[docs-root]: https://transfer.hft-stuttgart.de/gitlab/dtt/documentation/-/blob/master/docs/index.md
[pages-link]: https://transfer.hft-stuttgart.de/pages/dtt/documentation
de.hftstuttgart.ip2;CalculatorTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorSecondTest {
private Calculator calculator = new Calculator();
@Test
public void add2() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub2() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult2() throws Exception {
assertEquals(15, calculator.mult(5, 2), 0.1);
}
@Test
public void div2() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum2() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorTest
{
private Calculator calculator = new Calculator();
@Test
public void add() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult() throws Exception {
assertEquals(15, calculator.mult(5, 3), 0.1);
}
@Test
public void div() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
*.class
# IntelliJ
/.idea
/out
*.iml
# DTT example Unittest OpenJDK11 JUnit5 Testrunner
This is the source code repository for the DTT example unittest with JUnit5.
Documentation for this is done with GitLab Pages using MkDocs and is available here:
[https://transfer.hft-stuttgart.de/pages/dtt/documentation][pages-link]
If you don't want to open the Webpage or it is not available for whatever reason,
the documentation root is found [here][docs-root]
[docs-root]: https://transfer.hft-stuttgart.de/gitlab/dtt/documentation/-/blob/master/docs/index.md
[pages-link]: https://transfer.hft-stuttgart.de/pages/dtt/documentation
de.hftstuttgart.ip2;CalculatorTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;add();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sub();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;mult();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;div();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
de.hftstuttgart.ip2;CalculatorSecondTest;sum();1;0;0;0;0;0;0;0;0;0;0;0.5;0;0;0;0
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorSecondTest {
private Calculator calculator = new Calculator();
@Test
public void add2() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub2() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult2() throws Exception {
assertEquals(15, calculator.mult(5, 2), 0.1);
}
@Test
public void div2() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum2() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
package de.hftstuttgart.ip2;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorTest
{
private Calculator calculator = new Calculator();
@Test
public void add() throws Exception {
assertEquals(5, calculator.add(2, 3), 0.1);
}
@Test
public void sub() throws Exception {
assertEquals(-1, calculator.sub(2, 3), 0.1);
}
@Test
public void mult() throws Exception {
assertEquals(15, calculator.mult(5, 3), 0.1);
}
@Test
public void div() throws Exception {
assertEquals(5, calculator.div(15, 3), 0.1);
}
@Test
public void sum() throws Exception {
assertEquals(12, calculator.sum(3, 4, 5), 0.1);
}
}
Supports Markdown
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