Skip to content
Snippets Groups Projects
Commit e17940ec authored by Goik Martin's avatar Goik Martin
Browse files

Sortet method execution in Junit tests.

parent 9f21699c
No related branches found
No related tags found
No related merge requests found
package de.hdm_stuttgart.sw1.klausur.test; package de.hdm_stuttgart.sw1.klausur.test;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Rule; import org.junit.FixMethodOrder;
import org.junit.Test; import org.junit.Test;
import org.junit.rules.Timeout; import org.junit.runners.MethodSorters;
import de.hdm_stuttgart.mi.exam.unitmarking.Marking; import de.hdm_stuttgart.mi.exam.unitmarking.Marking;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
@SuppressWarnings({"javadoc"}) @SuppressWarnings({"javadoc"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class Test_MorseExceptions { public class Test_MorseExceptions {
@Rule // Kill test if lasting longer than 1000 milliseconds // Kill test if lasting longer than 1000 milliseconds
public Timeout globalTimeout = Timeout.seconds(1); // @Rule
// public Timeout globalTimeout = Timeout.seconds(1);
@Test @Test
@Marking(points=5) @Marking(points=5)
public void morsen_Exception () { public void test_010_morsen_Exception () {
try { try {
final String text = "Ab+en_d"; final String text = "Ab+en_d";
morsen("Ab+en_d"); morsen("Ab+en_d");
...@@ -27,7 +29,7 @@ public class Test_MorseExceptions { ...@@ -27,7 +29,7 @@ public class Test_MorseExceptions {
@Test @Test
@Marking(points=2) @Marking(points=2)
public void morsen_ExceptionMessage() { public void test_020_morsen_ExceptionMessage() {
final String text = "Ab+en_d"; final String text = "Ab+en_d";
try { try {
morsen(text); morsen(text);
......
package de.hdm_stuttgart.sw1.klausur.test; package de.hdm_stuttgart.sw1.klausur.test;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.chinesischerAkzent;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.entferneVokale;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Rule; import org.junit.FixMethodOrder;
import org.junit.Test; import org.junit.Test;
import org.junit.rules.Timeout; import org.junit.runners.MethodSorters;
import de.hdm_stuttgart.mi.exam.unitmarking.Marking; import de.hdm_stuttgart.mi.exam.unitmarking.Marking;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.chinesischerAkzent;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.entferneVokale;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
@SuppressWarnings({"javadoc"}) @SuppressWarnings({"javadoc"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class Test_StringTransforms { public class Test_StringTransforms {
@Rule // Kill test if lasting longer than 1000 milliseconds // Kill test if lasting longer than 1000 milliseconds
public Timeout globalTimeout = Timeout.seconds(1); // @Rule
// public Timeout globalTimeout = Timeout.seconds(1);
// Tests zu chinesischerAkzent(final String input) // Tests zu chinesischerAkzent(final String input)
// //
@Test @Test
public void chinesischerAkzent_EmptyString () { public void test_010_chinesischerAkzent_EmptyString () {
Assert.assertEquals("", chinesischerAkzent("")); Assert.assertEquals("", chinesischerAkzent(""));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void chinesischerAkzent_Identisch() { public void test_020_chinesischerAkzent_Identisch() {
final String ohne_r_buchstaben = "Es geht auch ohne!"; final String ohne_r_buchstaben = "Es geht auch ohne!";
Assert.assertEquals(ohne_r_buchstaben, chinesischerAkzent(ohne_r_buchstaben)); Assert.assertEquals(ohne_r_buchstaben, chinesischerAkzent(ohne_r_buchstaben));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void chinesischerAkzent_Multiple() { public void test_030_chinesischerAkzent_Multiple() {
Assert.assertEquals("Almes Lumänien", chinesischerAkzent("Armes Rumänien")); Assert.assertEquals("Almes Lumänien", chinesischerAkzent("Armes Rumänien"));
} }
...@@ -41,49 +43,49 @@ public class Test_StringTransforms { ...@@ -41,49 +43,49 @@ public class Test_StringTransforms {
// //
@Test @Test
@Marking(points=4) @Marking(points=4)
public void entferneVokale_NullInput () { public void test_040_entferneVokale_NullInput () {
Assert.assertNull(entferneVokale(null)); Assert.assertNull(entferneVokale(null));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void entferneVokale_EmptyString() { public void test_050_entferneVokale_EmptyString() {
Assert.assertEquals("", entferneVokale("")); Assert.assertEquals("", entferneVokale(""));
} }
@Test @Test
public void entferneVokale_Einzelvokal() { public void test_060_entferneVokale_Einzelvokal() {
Assert.assertEquals("", entferneVokale("E")); Assert.assertEquals("", entferneVokale("E"));
} }
@Test @Test
public void entferneVokale_Einzelkonsonant() { public void test_070_entferneVokale_Einzelkonsonant() {
Assert.assertEquals("k", entferneVokale("k")); Assert.assertEquals("k", entferneVokale("k"));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void entferneVokale_NixZuTun () { public void test_080_entferneVokale_NixZuTun () {
final String textOhneVokale = "dffGl1883KQW_+"; final String textOhneVokale = "dffGl1883KQW_+";
Assert.assertEquals(textOhneVokale, entferneVokale(textOhneVokale)); Assert.assertEquals(textOhneVokale, entferneVokale(textOhneVokale));
} }
@Test @Test
@Marking(points=5) @Marking(points=5)
public void entferneVokale_Multiple(){ public void test_090_entferneVokale_Multiple(){
Assert.assertEquals("Bssr chtng f lls!", entferneVokale("Besser Achtung auf alles!")); Assert.assertEquals("Bssr chtng f lls!", entferneVokale("Besser Achtung auf alles!"));
} }
// Tests zu morsen(final String input) // Tests zu morsen(final String input)
// //
@Test @Test
public void morsen_Leer () { public void test_100_morsen_Leer () {
Assert.assertEquals("", morsen("")); Assert.assertEquals("", morsen(""));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void morsen_Abend () { public void test_110_morsen_Abend () {
Assert.assertEquals(".- -... . -. -.. ", morsen("Abend")); Assert.assertEquals(".- -... . -. -.. ", morsen("Abend"));
} }
} }
\ No newline at end of file
package de.hdm_stuttgart.sw1.klausur.test; package de.hdm_stuttgart.sw1.klausur.test;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
import org.junit.Assert; import org.junit.Assert;
import org.junit.FixMethodOrder;
import org.junit.Rule;
import org.junit.Test; import org.junit.Test;
import org.junit.rules.Timeout;
import org.junit.runners.MethodSorters;
import de.hdm_stuttgart.mi.exam.unitmarking.Marking; import de.hdm_stuttgart.mi.exam.unitmarking.Marking;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
@SuppressWarnings({"javadoc"}) @SuppressWarnings({"javadoc"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class Test_MorseExceptions { public class Test_MorseExceptions {
// Kill test if lasting longer than 1000 milliseconds
@Rule
public Timeout globalTimeout = Timeout.seconds(1);
@Test @Test
@Marking(points=5) @Marking(points=5)
public void morsen_Exception () { public void test_010_morsen_Exception () {
try { try {
final String text = "Ab+en_d"; final String text = "Ab+en_d";
morsen("Ab+en_d"); morsen("Ab+en_d");
...@@ -22,7 +31,7 @@ public class Test_MorseExceptions { ...@@ -22,7 +31,7 @@ public class Test_MorseExceptions {
@Test @Test
@Marking(points=2) @Marking(points=2)
public void morsen_ExceptionMessage() { public void test_020_morsen_ExceptionMessage() {
final String text = "Ab+en_d"; final String text = "Ab+en_d";
try { try {
morsen(text); morsen(text);
......
package de.hdm_stuttgart.sw1.klausur.test; package de.hdm_stuttgart.sw1.klausur.test;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.chinesischerAkzent;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.entferneVokale;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
import org.junit.Assert; import org.junit.Assert;
import org.junit.FixMethodOrder;
import org.junit.Rule;
import org.junit.Test; import org.junit.Test;
import org.junit.rules.Timeout;
import org.junit.runners.MethodSorters;
import de.hdm_stuttgart.mi.exam.unitmarking.Marking; import de.hdm_stuttgart.mi.exam.unitmarking.Marking;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.chinesischerAkzent;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.entferneVokale;
import static de.hdm_stuttgart.sw1.klausur.StringTransforms.morsen;
@SuppressWarnings({"javadoc"}) @SuppressWarnings({"javadoc"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class Test_StringTransforms { public class Test_StringTransforms {
// Kill test if lasting longer than 1000 milliseconds
@Rule
public Timeout globalTimeout = Timeout.seconds(1);
// Tests zu chinesischerAkzent(final String input) // Tests zu chinesischerAkzent(final String input)
// //
@Test @Test
public void chinesischerAkzent_EmptyString () { public void test_010_chinesischerAkzent_EmptyString () {
Assert.assertEquals("", chinesischerAkzent("")); Assert.assertEquals("", chinesischerAkzent(""));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void chinesischerAkzent_Identisch() { public void test_020_chinesischerAkzent_Identisch() {
final String ohne_r_buchstaben = "Es geht auch ohne!"; final String ohne_r_buchstaben = "Es geht auch ohne!";
Assert.assertEquals(ohne_r_buchstaben, chinesischerAkzent(ohne_r_buchstaben)); Assert.assertEquals(ohne_r_buchstaben, chinesischerAkzent(ohne_r_buchstaben));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void chinesischerAkzent_Multiple() { public void test_030_chinesischerAkzent_Multiple() {
Assert.assertEquals("Almes Lumänien", chinesischerAkzent("Armes Rumänien")); Assert.assertEquals("Almes Lumänien", chinesischerAkzent("Armes Rumänien"));
} }
...@@ -36,49 +45,49 @@ public class Test_StringTransforms { ...@@ -36,49 +45,49 @@ public class Test_StringTransforms {
// //
@Test @Test
@Marking(points=4) @Marking(points=4)
public void entferneVokale_NullInput () { public void test_040_entferneVokale_NullInput () {
Assert.assertNull(entferneVokale(null)); Assert.assertNull(entferneVokale(null));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void entferneVokale_EmptyString() { public void test_050_entferneVokale_EmptyString() {
Assert.assertEquals("", entferneVokale("")); Assert.assertEquals("", entferneVokale(""));
} }
@Test @Test
public void entferneVokale_Einzelvokal() { public void test_060_entferneVokale_Einzelvokal() {
Assert.assertEquals("", entferneVokale("E")); Assert.assertEquals("", entferneVokale("E"));
} }
@Test @Test
public void entferneVokale_Einzelkonsonant() { public void test_070_entferneVokale_Einzelkonsonant() {
Assert.assertEquals("k", entferneVokale("k")); Assert.assertEquals("k", entferneVokale("k"));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void entferneVokale_NixZuTun () { public void test_080_entferneVokale_NixZuTun () {
final String textOhneVokale = "dffGl1883KQW_+"; final String textOhneVokale = "dffGl1883KQW_+";
Assert.assertEquals(textOhneVokale, entferneVokale(textOhneVokale)); Assert.assertEquals(textOhneVokale, entferneVokale(textOhneVokale));
} }
@Test @Test
@Marking(points=5) @Marking(points=5)
public void entferneVokale_Multiple(){ public void test_090_entferneVokale_Multiple(){
Assert.assertEquals("Bssr chtng f lls!", entferneVokale("Besser Achtung auf alles!")); Assert.assertEquals("Bssr chtng f lls!", entferneVokale("Besser Achtung auf alles!"));
} }
// Tests zu morsen(final String input) // Tests zu morsen(final String input)
// //
@Test @Test
public void morsen_Leer () { public void test_100_morsen_Leer () {
Assert.assertEquals("", morsen("")); Assert.assertEquals("", morsen(""));
} }
@Test @Test
@Marking(points=2) @Marking(points=2)
public void morsen_Abend () { public void test_110_morsen_Abend () {
Assert.assertEquals(".- -... . -. -.. ", morsen("Abend")); Assert.assertEquals(".- -... . -. -.. ", morsen("Abend"));
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment