mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
20 lines
399 B
C#
20 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|