Bumblebee.IntegrationTests.Setup.ThreadedSessionTests.When_loading_with_generic_driver_Then_should_return_session_with_correct_driver_with_default_settings C# (CSharp) Метод

When_loading_with_generic_driver_Then_should_return_session_with_correct_driver_with_default_settings() приватный Метод

		public void When_loading_with_generic_driver_Then_should_return_session_with_correct_driver_with_default_settings()
		{
			Threaded<Session>
				.With<PhantomJS>()
				.Verify(x => x.Driver is PhantomJSDriver)
				.VerifyThat(x => x.Settings.ShouldBeEquivalentTo(new Settings()))
				.End();
		}