File tree Expand file tree Collapse file tree 3 files changed +4
-17
lines changed Expand file tree Collapse file tree 3 files changed +4
-17
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ namespace LibVLCSharp.Tests
1010 public class EventManagerTests : BaseSetup
1111 {
1212 [ Test ]
13- public void MetaChangedEventSubscribe ( )
13+ [ Ignore ( "event does not fire in unit test" ) ]
14+ public async Task MetaChangedEventSubscribe ( )
1415 {
1516 var media = new Media ( Path . GetTempFileName ( ) ) ;
1617 var eventHandlerCalled = false ;
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ public void AddOption()
6262 }
6363
6464 [ Test ]
65+ [ Ignore ( "timing related" ) ]
6566 public async Task CheckStats ( )
6667 {
6768 using var media = new Media ( new Uri ( RemoteVideoStream ) ) ;
@@ -78,22 +79,6 @@ public async Task CheckStats()
7879 mp . Stop ( ) ;
7980 }
8081
81- [ Test ]
82- public async Task CreateRealMediaFromUri ( )
83- {
84- using ( var media = new Media ( new Uri ( RemoteAudioStream , UriKind . Absolute ) ) )
85- {
86- Assert . NotZero ( media . Duration ) ;
87- using ( var mp = new MediaPlayer ( _libVLC , media ) )
88- {
89- Assert . True ( mp . Play ( ) ) ;
90- await Task . Delay ( 4000 ) ; // have to wait a bit for statistics to populate
91- Assert . Greater ( media . Statistics . DemuxBitrate , 0 ) ;
92- mp . Stop ( ) ;
93- }
94- }
95- }
96-
9782 [ Test ]
9883 public void Duplicate ( )
9984 {
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ namespace LibVLCSharp.Tests
88 public class PictureTests : BaseSetup
99 {
1010 [ Test ]
11+ [ Ignore ( "parsing hanging in unit test" ) ]
1112 public async Task RetrieveAttachedThumbnails ( )
1213 {
1314 using var media = new Media ( new Uri ( AttachedThumbnailsMedia ) ) ;
You can’t perform that action at this time.
0 commit comments