Changeset c87ad54056043b0b94d78847bd6e311e6e20aa6a

Show
Ignore:
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
  • bindings/java/core/src/test/java/org/videolan/jvlc/internal/MediaListPlayerTest.java

    r10b3d6f rc87ad54  
    3333import org.videolan.jvlc.internal.LibVlc.LibVlcInstance; 
    3434import org.videolan.jvlc.internal.LibVlc.LibVlcMediaDescriptor; 
    35 import org.videolan.jvlc.internal.LibVlc.LibVlcMediaInstance; 
    3635import org.videolan.jvlc.internal.LibVlc.LibVlcMediaList; 
    3736import org.videolan.jvlc.internal.LibVlc.LibVlcMediaListPlayer; 
     
    103102    } 
    104103 
     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 
    105115}