AjaxControlToolkit.Tests.BundleResolverTests.SingleControlInBundleTest C# (CSharp) 메소드

SingleControlInBundleTest() 개인적인 메소드

private SingleControlInBundleTest ( ) : void
리턴 void
        public void SingleControlInBundleTest()
        {
            var resolver = new BundleResolver(_moqCache.Object);
            var results = resolver.GetControlTypesInBundles(new[] { "SingleBundle" }, TestConfigPath);

            // Assert all controls in SingleBundle group
            AssertResults(results, new[] { "TextBoxWatermarkExtender" });
        }