BoardTests CloneMatchesOriginal Method Delta Engine Documentation

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

public void CloneMatchesOriginal()
Examples

[Test]
public void CloneMatchesOriginal()
{
    board.SetColor(0, 0, Color.Red);
    Board clone = board.Clone();
    Assert.AreEqual(Color.Red, clone.GetColor(0, 0));
}
See Also