Example #1
0
        public BrowserPlatformTest()
        {
            PlatformTest platform = new PlatformTest();
            AddDependentObject(platform);

            BrowserTest browser = new BrowserTest();
            AddDependentObject(browser);

            mBrowserPlatform = new BrowserPlatform();
            mBrowserPlatform.Platform = platform.Platform;
            mBrowserPlatform.Browser = browser.Browser;
        }
Example #2
0
        public BrowserCounterTest()
        {
            BrowserTest Browser = new BrowserTest();
            AddDependentObject(Browser);

            CounterTest counter = new CounterTest();
            AddDependentObject(counter);

            mBrowserCounter = new BrowserCounter();
            mBrowserCounter.Counter = counter.Counter;
            mBrowserCounter.Browser = Browser.Browser;
        }
Example #3
0
        public BrowserPlatformTest()
        {
            PlatformTest platform = new PlatformTest();

            AddDependentObject(platform);

            BrowserTest browser = new BrowserTest();

            AddDependentObject(browser);

            mBrowserPlatform          = new BrowserPlatform();
            mBrowserPlatform.Platform = platform.Platform;
            mBrowserPlatform.Browser  = browser.Browser;
        }
Example #4
0
        public BrowserCounterTest()
        {
            BrowserTest Browser = new BrowserTest();

            AddDependentObject(Browser);

            CounterTest counter = new CounterTest();

            AddDependentObject(counter);

            mBrowserCounter         = new BrowserCounter();
            mBrowserCounter.Counter = counter.Counter;
            mBrowserCounter.Browser = Browser.Browser;
        }