SoundTests PlaySoundInstance Method Delta Engine Documentation

Namespace: DeltaEngine.Multimedia.Tests
Assembly: DeltaEngine.Multimedia.Tests (in DeltaEngine.Multimedia.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void PlaySoundInstance()
Examples

[Test]
public void PlaySoundInstance()
{
    var sound = ContentLoader.Load<Sound>("DefaultSound");
    var instance = sound.CreateSoundInstance();
    Assert.AreEqual(0.48f, sound.LengthInSeconds, 0.01f);
    Assert.AreEqual(false, instance.IsPlaying);
    instance.Play();
    Assert.AreEqual(true, instance.IsPlaying);
}
See Also