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

SelectForDeployPredicateWithTypeAndCategories_NoCategories_Expected_True() private method

        public void SelectForDeployPredicateWithTypeAndCategories_NoCategories_Expected_True()
        {
            Mock<IContextualResourceModel> mockResourceModel = CreateMockResourceModel();
            IEnvironmentModel environmentModel;
            IExplorerItemModel resourceVm;
            IExplorerItemModel rootItem;
            CreateModels(false, mockResourceModel, out environmentModel, out resourceVm, out rootItem);

            resourceVm.IsChecked = true;

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

            Assert.IsTrue(actual);
        }
DeployStatsCalculatorTests