public void TestClone_NotSameReference()
 {
     var state = new TicTacTocState(5);
     var clone = state.Copy();
     Assert.AreNotEqual(clone, state);
 }