mirror of https://github.com/naudio/NAudio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using NUnit.Framework;
|
|
using NAudio.Dmo;
|
|
|
|
namespace NAudioTests
|
|
{
|
|
[TestFixture]
|
|
public class DmoTests
|
|
{
|
|
[Test]
|
|
public void CanEnumerateAudioEffects()
|
|
{
|
|
Console.WriteLine("Audio Effects:");
|
|
foreach (string name in DmoEnumerator.GetAudioEffectNames())
|
|
{
|
|
Console.WriteLine(name);
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void CanEnumerateAudioEncoders()
|
|
{
|
|
Console.WriteLine("Audio Encoders:");
|
|
foreach (string name in DmoEnumerator.GetAudioEncoderNames())
|
|
{
|
|
Console.WriteLine(name);
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void CanEnumerateAudioDecoders()
|
|
{
|
|
Console.WriteLine("Audio Decoders:");
|
|
foreach (string name in DmoEnumerator.GetAudioDecoderNames())
|
|
{
|
|
Console.WriteLine(name);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|