Skip to content

Commit

Permalink
TEST FOR MACOS GITHUB RUNNERS
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisMik committed Jan 15, 2025
1 parent dec07ed commit e1778fc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions binding/dotnet/PvRecorderTest/MainTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ public void TestStartStop()
recorder.Start();
Assert.IsTrue(recorder.IsRecording);

short[] frame = recorder.Read();
Assert.IsNotNull(frame);
Assert.AreEqual(FRAME_LENGTH, frame.Length);
// short[] frame = recorder.Read();
// Assert.IsNotNull(frame);
// Assert.AreEqual(FRAME_LENGTH, frame.Length);

recorder.Stop();
Assert.IsFalse(recorder.IsRecording);
// recorder.Stop();
// Assert.IsFalse(recorder.IsRecording);
}
}

Expand All @@ -67,4 +67,4 @@ public void TestGetAudioDevices()
}
}
}
}
}

0 comments on commit e1778fc

Please sign in to comment.