예제 #1
0
        bool FilterIncludes(string[] storyTags, string[] scenarioTags)
        {
            var scenario = new Scenario()
            {
                Tags = storyTags
            };
            var story = new Story("", "", new[] { scenario })
            {
                Tags = scenarioTags
            };

            return(Filter.Include(story, scenario));
        }