BloomTests.Book.BookCopyrightAndLicenseTests.CheckDataDivToPagePropagation_LicenseDescription C# (CSharp) Method

CheckDataDivToPagePropagation_LicenseDescription() private method

private CheckDataDivToPagePropagation_LicenseDescription ( ) : void
return void
		public void CheckDataDivToPagePropagation_LicenseDescription()
		{
			CheckUpdateDomFromDataDiv("licenseDescription", null, description: "if licenseDescription is not in datadiv, on page the corresponding element should be empty");
			CheckUpdateDomFromDataDiv("licenseDescription", "", description: "if licenseDescription is empty datadiv, on page the corresponding element should be empty");
			CheckUpdateDomFromDataDiv("licenseDescription", "some Description", description: "if licenseDescription is in datadiv, on page the corresponding element should be a copy");
			CheckUpdateDomFromDataDiv("licenseDescription", "line 1<br />line 2", description: "can include br in description", customXPath: "//div[@id='test']/div/br");
		}
		[Test]
BookCopyrightAndLicenseTests