Dev2.Core.Tests.DeployStatsCalculatorTests.SelectForDeployPredicateWithTypeAndCategories_TypeMismatch_Expected_False C# (CSharp) Method

SelectForDeployPredicateWithTypeAndCategories_TypeMismatch_Expected_False() private method

        public void SelectForDeployPredicateWithTypeAndCategories_TypeMismatch_Expected_False()
        {
            ExplorerItemModel navigationItemViewModel = new ExplorerItemModel();

            bool actual = DeployStatsCalculator
                .SelectForDeployPredicateWithTypeAndCategories(navigationItemViewModel, ResourceType.WorkflowService, new List<string>(), new List<string>());

            Assert.IsFalse(actual);
        }
DeployStatsCalculatorTests