public void MethodUnderTest_Scenario_ExpectedBehavior()
        {
            var collection = new ArgumentTypeCollection();
            collection.Add<string>();

            collection.Single().ShouldEqual(typeof(string));
        }
Beispiel #2
0
        public void MethodUnderTest_Scenario_ExpectedBehavior()
        {
            var collection = new ArgumentTypeCollection();

            collection.Add <string>();

            collection.Single().ShouldEqual(typeof(string));
        }