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

Should_contain_three_rows() private method

private Should_contain_three_rows ( ) : void
return void
		public void Should_contain_three_rows()
		{
			Threaded<Session>
				.CurrentBlock<GenericTablePage>()
				.Table
				.VerifyThat(x => x.Rows
					.Count()
					.Should()
					.Be(3));
		}