mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
7547c48927
Former-commit-id: a0de4c1cf6
19 lines
399 B
C#
19 lines
399 B
C#
using FFMpegCore.FFMPEG;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace FFMpegCore.Test
|
|
{
|
|
[TestClass]
|
|
public class FFMpegTest
|
|
{
|
|
[TestMethod]
|
|
public void CTOR_Default()
|
|
{
|
|
var encoder = new FFMpeg();
|
|
var probe = new FFProbe();
|
|
|
|
Assert.IsNotNull(encoder);
|
|
Assert.IsNotNull(probe);
|
|
}
|
|
}
|
|
}
|