RadioButtonTests RenderThreeRadioButtonsWithTheMiddleDisabled Method Delta Engine Documentation

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

public void RenderThreeRadioButtonsWithTheMiddleDisabled()
Examples

[Test, ApproveFirstFrameScreenshot]
public void RenderThreeRadioButtonsWithTheMiddleDisabled()
{
    new RadioButton(Top, "Hello");
    new RadioButton(Bottom, "Hey");
    centerButton.IsEnabled = false;
    AdvanceTimeAndUpdateEntities();
    Assert.AreEqual(Color.DarkGray, centerButton.Color);
}
See Also