コード例 #1
0
        public void to_string_just_repeats_the_ctor_arg()
        {
            var activator = new LambdaActivator("some description", () => { });

            activator.ToString().ShouldEqual("some description");
        }
コード例 #2
0
 public void to_string_just_repeats_the_ctor_arg()
 {
     var activator = new LambdaActivator("some description", () => { });
     activator.ToString().ShouldEqual("some description");
 }