Exemplo n.º 1
0
        public void EverythingIsFineTest()
        {
            string config = "a=1;b=hallo;c=david schäfer";
            var expectedObject = new Dictionary<string, string> {{"a", "1"}, {"b", "hallo"}, {"c", "david schäfer"}};

            var todicitonary = new ToDictionary.ToDictionary();
            var actualObject = todicitonary.ToDictionaryMethod(config);

            CollectionAssert.AreEquivalent(expectedObject.Keys, actualObject.Keys);
            CollectionAssert.AreEquivalent(expectedObject.Values, actualObject.Values);
        }
Exemplo n.º 2
0
 public void InputNullTest()
 {
     string config = null;
     bool errorOccur = false;
     try
     {
         var todicitonary = new ToDictionary.ToDictionary();
         todicitonary.ToDictionaryMethod(config);
     }
     catch (Exception)
     {
         errorOccur = true;
     }
     Assert.IsTrue(errorOccur);
 }