コード例 #1
0
        public void Does_Not_Read_Types()
        {
            var formatter = new CsvFormatter();

            formatter.CanReadType(typeof(ReleaseNotes)).ShouldBe(false);
            formatter.CanReadType(typeof(WorkItem)).ShouldBe(false);
            formatter.CanReadType(typeof(Project)).ShouldBe(false);
            formatter.CanReadType(typeof(Build)).ShouldBe(false);
            formatter.CanReadType(typeof(Models.Environment)).ShouldBe(false);
        }