コード例 #1
0
ファイル: NUnit3Tests.cs プロジェクト: vkarthim/libpalaso
        public void AddIncludeAndExcludeArguments_BuildsProperString(string include, string exclude, string result)
        {
            var nUnit3 = new NUnit3
            {
                IncludeCategory = include,
                ExcludeCategory = exclude
            };

            Assert.AreEqual(result, nUnit3.AddIncludeAndExcludeArguments());
        }