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

Should_contain_first_row_with_quantity_of_four() private method

private Should_contain_first_row_with_quantity_of_four ( ) : void
return void
		public void Should_contain_first_row_with_quantity_of_four()
		{
			Threaded<Session>
				.CurrentBlock<GenericTablePage>()
				.Table
				.VerifyThat(x => x.RowsAs<GenericTableRow>()
					.First()
					.Quantity
					.Should()
					.Be(4));
		}