Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
2756cdaf
Commit
2756cdaf
authored
Aug 25, 2008
by
littlejohn
Browse files
jvlc: test with multiple jvlc instances added
parent
15bb8c9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/java/core/src/test/java/org/videolan/jvlc/JVLCTest.java
View file @
2756cdaf
...
...
@@ -56,5 +56,21 @@ public class JVLCTest extends AbstractJVLCTest
jvlc
.
release
();
}
@Test
public
void
jvlcMultipleInstances
()
{
JVLC
[]
jvlcInstancesArray
=
new
JVLC
[
10
];
for
(
int
i
=
0
;
i
<
jvlcInstancesArray
.
length
;
i
++)
{
jvlcInstancesArray
[
i
]
=
new
JVLC
();
}
for
(
int
i
=
0
;
i
<
jvlcInstancesArray
.
length
;
i
++)
{
jvlcInstancesArray
[
i
].
release
();
}
}
}
Write
Preview
Supports
Markdown
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