Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Edmunds Žagars
Java_course_final
Commits
358c19bb
Commit
358c19bb
authored
Apr 15, 2018
by
edmundszagars
Browse files
Formatting
parent
4b784bab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
tests/BubbleSortTests.java
tests/BubbleSortTests.java
+1
-0
No files found.
tests/BubbleSortTests.java
View file @
358c19bb
...
...
@@ -11,6 +11,7 @@ public class BubbleSortTests {
private
double
[]
testArrayGiven
=
{
1
,
6
,
2
,
3
,
4
,
8
,
9
,
0
,
2
,
3
,
4
,
7
,
6
,
5
,
4
,
1
,
3
,
34
,
56
,
78
,
90
,
12
,
43
,
57
,
88
,
99
,
64
,
12
,
43
,
19
,
86
};
private
double
[]
testArrayExpected
=
{
0.0
,
1.0
,
1.0
,
2.0
,
2.0
,
3.0
,
3.0
,
3.0
,
4.0
,
4.0
,
4.0
,
5.0
,
6.0
,
6.0
,
7.0
,
8.0
,
9.0
,
12.0
,
12.0
,
19.0
,
34.0
,
43.0
,
43.0
,
56.0
,
57.0
,
64.0
,
78.0
,
86.0
,
88.0
,
90.0
,
99.0
}
;
double
[]
largeArray
;
@Before
public
void
setup
(){
bs
=
new
BubbleSort
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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