Example #1
0
        public void Known_identifiers_Should_not_contain_ignored_services()
        {
            var identifiers = ServiceResolver.GetKnownServiceIdentifiers();

            identifiers.Should().NotContain(new[] { "assetmgmt3d-service" });
        }
Example #2
0
 public void Known_identifiers_Should_be_populated() =>
 ServiceResolver.GetKnownServiceIdentifiers().Should().NotBeNullOrEmpty();
Example #3
0
 public void Known_identifiers_Should_not_contain_duplicates() =>
 ServiceResolver.GetKnownServiceIdentifiers().Should().OnlyHaveUniqueItems();