VectorTextTests RenderingHiddenVectorTextDoesNotThrowException Method Delta Engine Documentation

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

public void RenderingHiddenVectorTextDoesNotThrowException()
Examples

[Test, CloseAfterFirstFrame]
public void RenderingHiddenVectorTextDoesNotThrowException()
{
    new VectorText("The Quick Brown Fox...", Vector2D.Half) { IsVisible = false };
    Assert.DoesNotThrow(() => AdvanceTimeAndUpdateEntities());
}
See Also