EllipseTests RenderingHiddenEllipseDoesNotThrowException Method Delta Engine Documentation

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

public void RenderingHiddenEllipseDoesNotThrowException()
Examples

[Test, CloseAfterFirstFrame]
public void RenderingHiddenEllipseDoesNotThrowException()
{
    var ellipse = new Ellipse(Vector2D.Half, 0.4f, 0.2f, Color.Red);
    ellipse.Add(new OutlineColor(Color.Yellow));
    ellipse.OnDraw<DrawPolygon2DOutlines>();
    Assert.DoesNotThrow(() => AdvanceTimeAndUpdateEntities());
}
See Also