Bumblebee.IntegrationTests.Implementation.TableTests.Given_generic_table.Should_contain_first_row_with_price_of_65 C# (CSharp) Method

Should_contain_first_row_with_price_of_65() private method

private Should_contain_first_row_with_price_of_65 ( ) : void
return void
		public void Should_contain_first_row_with_price_of_65()
		{
			Threaded<Session>
				.CurrentBlock<GenericTablePage>()
				.Table
				.VerifyThat(x => x.RowsAs<GenericTableRow>()
					.First()
					.Price
					.Should()
					.Be(65.00m));
		}
	}