예제 #1
0
        public void CreateFunctionsKeysTestSimpleCase()
        {
            //Act
            var res = BDDSharpSolver.CreateFunctionsKeys(new Dictionary <string, List <int> >()
            {
                { "a", new List <int>()
                  {
                      1, 2, 3
                  } }
            });

            // Assert
            Assert.AreEqual(res.Count, 1);
            Assert.AreEqual(res["a"].Count, 3);
            Assert.IsTrue(res["a"][0] == "#F1_a");
            Assert.IsTrue(res["a"][1] == "#F2_a");
            Assert.IsTrue(res["a"][2] == "#F3_a");
        }
예제 #2
0
        public void CreateFunctionsKeysTestSecondCase()
        {
            var res = BDDSharpSolver.CreateFunctionsKeys(new Dictionary <string, List <int> >()
            {
                { "a", new List <int>()
                  {
                      1, 2, 3
                  } },
                { "b", new List <int>()
                  {
                      1, 2, 3
                  } }
            });


            Assert.AreEqual(res.Count, 2);
            Assert.IsTrue(res["a"].Any(a => a == "#F1_a"));
            Assert.IsTrue(res["a"].Any(a => a == "#F2_a"));
            Assert.IsTrue(res["a"].Any(a => a == "#F3_a"));
            Assert.IsTrue(res["b"].Any(a => a == "#F1_b"));
            Assert.IsTrue(res["b"].Any(a => a == "#F2_b"));
            Assert.IsTrue(res["b"].Any(a => a == "#F3_b"));
        }