using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using NUnit.Framework; namespace Rmake.RmakeTests.Sound { [TestFixture] class SoundTest { public SoundTest() { } [Test] public void PlayTest() { Assert.IsTrue(true); Application.Run(new SoundOpenFile()); } } }