public void TestMatchScore() { StartImport start = new StartImport(); string test1 = "Test string"; string test2 = "Test string"; int expectedScore = 12; int actualScore = start.TestDistance(test1, test2); Assert.AreEqual(expectedScore, actualScore, "The strings were correctly matched."); }
// // When // void When(StartImport e) { if (_importing) { Then(new ImportAlreadyStarted()); } else { Then(new ImportStarted()); } }