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

Should_contain_first_row_with_item_of_wine() private method

private Should_contain_first_row_with_item_of_wine ( ) : void
return void
		public void Should_contain_first_row_with_item_of_wine()
		{
			Threaded<Session>
				.CurrentBlock<GenericTablePage>()
				.Table
				.VerifyThat(x => x.RowsAs<GenericTableRow>()
					.First()
					.Item
					.Should()
					.Be("Wine"));
		}