예제 #1
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="Chain"/> class.
        /// </summary>
        /// <param name="body">The body the chain is attached to.</param>
        /// <param name="head">The head link of the chain.</param>
        /// <param name="tail">The tail link of the chain.</param>
        internal Chain(Body body, EdgeFixture head, EdgeFixture tail)
        {
            System.Diagnostics.Debug.Assert(body != null && head != null && tail != null);
            System.Diagnostics.Debug.Assert(!head.HasVertex0);
            System.Diagnostics.Debug.Assert(!tail.HasVertex3);

            _body = body;
            _head = head;
            _tail = tail;
        }
 public WebDriverExtensionsJQueryUnloadedSelectorEdgeTests(EdgeFixture fixture)
     : base(fixture.Browser, TestCaseModule.JQUERY_UNLOADED, x => By.JQuerySelector(x))
 {
 }
 public WebDriverExtensionsSizzleLoadedSelectorEdgeTests(EdgeFixture fixture)
     : base(fixture.Browser, TestCaseModule.SIZZLE_LOADED, x => By.SizzleSelector(x))
 {
 }
 public WebDriverExtensionsSizzleLoadedSelectorEdgeTests(EdgeFixture fixture)
     : base(fixture, SIZZLE_LOADED, x => SizzleSelector(x))
 {
 }
예제 #5
0
 public WebDriverExtensionsJQueryUnloadedSelectorEdgeTests(EdgeFixture fixture)
     : base(fixture, UNLOADED, x => JQuerySelector(x))
 {
 }