Changeset c87ad54056043b0b94d78847bd6e311e6e20aa6a
- Timestamp:
- 03/16/08 22:41:06
(4 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1205703666 +0100
- git-parent:
[99f80c178a8236c18400150fff4d436f127e41b8]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1205703650 +0100
- Message:
new (failing) test for media list player (ticket #1524)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r10b3d6f |
rc87ad54 |
|
| 33 | 33 | import org.videolan.jvlc.internal.LibVlc.LibVlcInstance; |
|---|
| 34 | 34 | import org.videolan.jvlc.internal.LibVlc.LibVlcMediaDescriptor; |
|---|
| 35 | | import org.videolan.jvlc.internal.LibVlc.LibVlcMediaInstance; |
|---|
| 36 | 35 | import org.videolan.jvlc.internal.LibVlc.LibVlcMediaList; |
|---|
| 37 | 36 | import org.videolan.jvlc.internal.LibVlc.LibVlcMediaListPlayer; |
|---|
| … | … | |
| 103 | 102 | } |
|---|
| 104 | 103 | |
|---|
| | 104 | // @Test |
|---|
| | 105 | /** |
|---|
| | 106 | * This test is disabled: see https://trac.videolan.org/vlc/ticket/1524 |
|---|
| | 107 | */ |
|---|
| | 108 | public void mediaListPlayerPlayNoItemTest() |
|---|
| | 109 | { |
|---|
| | 110 | libvlc_exception_t exception = new libvlc_exception_t(); |
|---|
| | 111 | LibVlcMediaListPlayer mediaListPlayer = libvlc.libvlc_media_list_player_new(libvlcInstance, exception); |
|---|
| | 112 | libvlc.libvlc_media_list_player_play(mediaListPlayer, exception); |
|---|
| | 113 | } |
|---|
| | 114 | |
|---|
| 105 | 115 | } |
|---|