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

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

		public void When_loading_with_generic_driver_and_custom_settings_Then_should_return_session_with_custom_settings()
		{
			var customSettings = new Settings
			{
				ScreenCapturePath = @"C:\Temp"
			};

			Threaded<Session>
				.With<PhantomJS>(customSettings)
				.VerifyThat(x => x.Settings.Should().Be(customSettings))
				.End();
		}