Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
HFTSoftwareProject
testcases
Commits
4e328892
Commit
4e328892
authored
Sep 24, 2024
by
Younis
Browse files
Add new file PlatztauschTest
parent
4a9feeab
Changes
1
Hide whitespace changes
Inline
Side-by-side
PlatztauschTest.java
0 → 100644
View file @
4e328892
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]
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment