Dev2.Core.Tests.Repositories.StudioResourceRepositoryTests.StudioResourceRepository_Constructor_ExplorerItemIsNull_ExplorerItemCollectionHasZeroItems C# (CSharp) Method

StudioResourceRepository_Constructor_ExplorerItemIsNull_ExplorerItemCollectionHasZeroItems() private method

        public void StudioResourceRepository_Constructor_ExplorerItemIsNull_ExplorerItemCollectionHasZeroItems()
        {
            AppSettings.LocalHost = "http://localhost:3145";
            var repo = new StudioResourceRepository(null, Guid.Empty, _invoke);
            Assert.AreEqual(0, repo.ExplorerItemModels.Count);
        }
StudioResourceRepositoryTests