Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
a5885fc8
Commit
a5885fc8
authored
13 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
Rename MDArraytest to MDArrayTests.
SVN: 24024
parent
f0f23e3b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
base/sourceTest/java/ch/systemsx/cisd/base/AllTests.java
+2
-2
2 additions, 2 deletions
base/sourceTest/java/ch/systemsx/cisd/base/AllTests.java
base/sourceTest/java/ch/systemsx/cisd/base/mdarray/MDArrayTests.java
+4
-4
4 additions, 4 deletions
...Test/java/ch/systemsx/cisd/base/mdarray/MDArrayTests.java
with
6 additions
and
6 deletions
base/sourceTest/java/ch/systemsx/cisd/base/AllTests.java
+
2
−
2
View file @
a5885fc8
...
...
@@ -21,7 +21,7 @@ import ch.systemsx.cisd.base.convert.NativeTaggedArrayTests;
import
ch.systemsx.cisd.base.exceptions.IOExceptionUncheckedTests
;
import
ch.systemsx.cisd.base.io.ByteBufferRandomAccessFileTests
;
import
ch.systemsx.cisd.base.io.RandomAccessFileImplTests
;
import
ch.systemsx.cisd.base.mdarray.MDArray
t
est
;
import
ch.systemsx.cisd.base.mdarray.MDArray
T
est
s
;
import
ch.systemsx.cisd.base.unix.Unix
;
import
ch.systemsx.cisd.base.unix.UnixTests
;
...
...
@@ -45,7 +45,7 @@ public class AllTests
System
.
out
.
println
();
RandomAccessFileImplTests
.
main
(
args
);
System
.
out
.
println
();
MDArray
t
est
.
main
(
args
);
MDArray
T
est
s
.
main
(
args
);
System
.
out
.
println
();
if
(
Unix
.
isOperational
())
{
...
...
This diff is collapsed.
Click to expand it.
base/sourceTest/java/ch/systemsx/cisd/base/mdarray/MDArray
t
est.java
→
base/sourceTest/java/ch/systemsx/cisd/base/mdarray/MDArray
T
est
s
.java
+
4
−
4
View file @
a5885fc8
...
...
@@ -32,7 +32,7 @@ import ch.systemsx.cisd.base.BuildAndEnvironmentInfo;
*
* @author Bernd Rinn
*/
public
class
MDArray
t
est
public
class
MDArray
T
est
s
{
static
class
TestMDArray
extends
MDAbstractArray
<
Void
>
...
...
@@ -181,10 +181,10 @@ public class MDArraytest
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
System
.
out
.
println
(
BuildAndEnvironmentInfo
.
INSTANCE
);
System
.
out
.
println
(
"Test class: "
+
MDArray
t
est
.
class
.
getSimpleName
());
System
.
out
.
println
(
"Test class: "
+
MDArray
T
est
s
.
class
.
getSimpleName
());
System
.
out
.
println
();
final
MDArray
t
est
test
=
new
MDArray
t
est
();
for
(
Method
m
:
MDArray
t
est
.
class
.
getMethods
())
final
MDArray
T
est
s
test
=
new
MDArray
T
est
s
();
for
(
Method
m
:
MDArray
T
est
s
.
class
.
getMethods
())
{
final
Test
testAnnotation
=
m
.
getAnnotation
(
Test
.
class
);
if
(
testAnnotation
==
null
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment