internal UrlControllersTest(string name, string url, bool hasDuplicate, params object[] controllers)
        {
            testUrl = url;

            rootGroup = new CtrGroupOrdered(hasDuplicate, controllers);
        }
        internal UrlControllersTest(string name, string url, params object[] controllers)
        {
            testUrl = url;

			rootGroup = new CtrGroupOrdered(controllers);
        }