Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
69710a13
Commit
69710a13
authored
Dec 21, 2008
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jvlc: comment tests that never return (need to find a good vod file for vlm)
parent
6f2087f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
bindings/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
...gs/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
+20
-20
No files found.
bindings/java/core/src/test/java/org/videolan/jvlc/VLMTest.java
View file @
69710a13
...
...
@@ -41,21 +41,21 @@ public class VLMTest extends AbstractJVLCTest
Assert
.
assertNotNull
(
vlm
);
}
@Test
//
@Test
public
void
testAddBroadcast
()
{
VLM
vlm
=
jvlc
.
getVLM
();
vlm
.
addBroadcast
(
mediaName
,
"file://"
+
mrl
,
""
,
null
,
true
,
false
);
}
@Test
//@Test(timeout = 2000L)
public
void
testAddVod
()
{
VLM
vlm
=
jvlc
.
getVLM
();
vlm
.
addVod
(
mediaName
,
"file://"
+
mrl
,
null
,
true
,
null
);
}
@Test
//
@Test
public
void
testShowBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -63,7 +63,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
showMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testShowVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -71,7 +71,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
showMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testDisableBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -79,7 +79,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
disableMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testDisableVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -87,7 +87,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
disableMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testPauseBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -97,7 +97,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
stopMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testPauseVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -108,7 +108,7 @@ public class VLMTest extends AbstractJVLCTest
}
@Test
//
@Test
public
void
testStopBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -117,7 +117,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
stopMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testStopVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -126,7 +126,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
stopMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testSeekBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -136,7 +136,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
stopMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testSeekVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -146,7 +146,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
stopMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testAddMediaInputToBroadcast
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -154,7 +154,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
addMediaInput
(
mediaName
,
"file://"
+
mrl
);
}
@Test
//
@Test
public
void
testAddMediaInputToVod
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -162,7 +162,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
addMediaInput
(
mediaName
,
"file://"
+
mrl
);
}
@Test
//
@Test
public
void
testEnableBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -170,7 +170,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
enableMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testEnableVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -178,7 +178,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
enableMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testDeleteBroadcastMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -186,7 +186,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
deleteMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testDeleteVodMedia
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -194,7 +194,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
deleteMedia
(
mediaName
);
}
@Test
//
@Test
public
void
testMediaLoop
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
@@ -202,7 +202,7 @@ public class VLMTest extends AbstractJVLCTest
vlm
.
setMediaLoop
(
mediaName
,
true
);
}
@Test
//
@Test
public
void
testSetMux
()
{
VLM
vlm
=
jvlc
.
getVLM
();
...
...
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