Bumblebee.IntegrationTests.Setup.ThreadedSessionTests.When_loading_with_driver_and_custom_settings_Then_should_return_session_with_custom_settings C# (CSharp) Method

When_loading_with_driver_and_custom_settings_Then_should_return_session_with_custom_settings() private method

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

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