예제 #1
0
        public void AddCounterRecordTest()
        {
            var record = new Record {
                Word = "AddCounterRecordTest"
            };

            history.AddCounterRecord(record);
            var target = history.ReturnAllRecordsForTesting();

            Assert.True(target.Last().Word == "AddCounterRecordTest");
        }