Commit 4e328892 authored by Younis's avatar Younis
Browse files

Add new file PlatztauschTest

parent 4a9feeab
public class PlatztauschTest {
public static void main(String[] args) {
testBasicArrayReversal();
testEmptyArray();
testSingleElementArray();
testEvenNumberOfElements();
testOddNumberOfElements();
testArrayWithNegativeNumbers();
}
public static void testBasicArrayReversal() {
int[] array = {1, 2, 3, 4, 5};
System.out.println("Test Basic Array Reversal:");
Platztausch.ausgeben(array); // Expected Output: [1, 2, 3, 4, 5]
Platztausch.umdrehen(array);
Platztausch.ausgeben(array); // Expected Output: [5, 4, 3, 2, 1]
}
public static void testEmptyArray() {
int[] array = {};
System.out.println("Test Empty Array:");
Platztausch.ausgeben(array); // Expected Output: []
Platztausch.umdrehen(array);
Platztausch.ausgeben(array); // Expected Output: []
}
public static void testSingleElementArray() {
int[] array = {42};
System.out.println("Test Single Element Array:");
Platztausch.ausgeben(array); // Expected Output: [42]
Platztausch.umdrehen(array);
Platztausch.ausgeben(array); // Expected Output: [42]
}
public static void testEvenNumberOfElements() {
int[] array = {1, 2, 3, 4};
System.out.println("Test Even Number of Elements:");
Platztausch.ausgeben(array); // Expected Output: [1, 2, 3, 4]
Platztausch.umdrehen(array);
Platztausch.ausgeben(array); // Expected Output: [4, 3, 2, 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