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

CheckDataDivToPagePropagation_LicenseNotes() private method

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