Bumblebee.IntegrationTests.Implementation.RadioButtonTests.Given_option_does_not_exist_When_selecting_by_text_Then_should_not_find_any C# (CSharp) Метод

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

		public void Given_option_does_not_exist_When_selecting_by_text_Then_should_not_find_any()
		{
			Threaded<Session>
				.CurrentBlock<RadioButtonsPage>()
				.VerifyThat(p => p.Beverages
					.Options.WithText("Test")
					.Any()
					.Should().BeFalse());
		}
	}