Пример #1
0
        public void TestGetIteratedDominantStrategy()
        {
            var testSubject = new PayoffMatrix(playerA, playerB);
            var testControl = testSubject.Items;

            Assert.IsNotNull(testControl);
            Assert.AreNotEqual(0, testControl.Count);
            testSubject.GetIteratedDominantStrategy(true);

            var testResult = testSubject.Items;

            Assert.IsNotNull(testResult);
            Assert.AreNotEqual(0, testResult.Count);
            Assert.AreNotEqual(testControl.Count, testResult.Count);
        }