public void TestIsValidFenFormat(string fen, bool expectedResult) { var actualResult = ChessHelper.IsValidFenFormat(fen); Assert.That(actualResult, Is.EqualTo(expectedResult)); }