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

SelectForDeployPredicateWithTypeAndCategories_NullNavigationItemViewModel_Expected_False() private method

        public void SelectForDeployPredicateWithTypeAndCategories_NullNavigationItemViewModel_Expected_False()
        {
            bool actual = DeployStatsCalculator
                .SelectForDeployPredicateWithTypeAndCategories(null, ResourceType.Unknown, new List<string>(), new List<string>());

            Assert.IsFalse(actual);
        }
DeployStatsCalculatorTests