Namespace: DeltaEngine.Graphics
Assembly: DeltaEngine.Graphics (in DeltaEngine.Graphics.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Graphics.Tests.DeviceTests
1 unit tests call DeltaEngine.Graphics.Device.Set3DMode
Assembly: DeltaEngine.Graphics (in DeltaEngine.Graphics.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Remarks
Examples
[Test] public void OnSet3DModeActionIsCalledWhenSetting3DMode() { var device = Resolve<Device>() as MockDevice; if (device == null) return; //ncrunch: no coverage Assert.IsFalse(device.OnSet3DModeCalled); device.Set3DMode(); Assert.IsTrue(device.OnSet3DModeCalled); }
See Also