Bari.Core.Test.Model.ProjectTest.GetSourceSetCreatesSetIfMissing C# (CSharp) Method

GetSourceSetCreatesSetIfMissing() private method

private GetSourceSetCreatesSetIfMissing ( ) : void
return void
        public void GetSourceSetCreatesSetIfMissing()
        {
            var project = new Project("test", new Module("testmod", new Suite(new TestFileSystemDirectory("module"))));
            var set1 = project.GetSourceSet("cs");

            set1.Should().NotBeNull();
            set1.Type.Should().Be(new SourceSetType("cs"));
        }