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

CheckDataDivToPagePropagation_LicenseImage() private method

private CheckDataDivToPagePropagation_LicenseImage ( ) : void
return void
		public void CheckDataDivToPagePropagation_LicenseImage()
		{
			CheckUpdateDomFromDataDiv("licenseImage", null, description: "if licenseImage is not in datadiv, on page the img element should have an empty @src and empty @alt");
			CheckUpdateDomFromDataDiv("licenseImage", "", description: "if licenseImage has empty @src in datadiv, on page the img element should have an empty @src and empty @alt");
			CheckUpdateDomFromDataDiv("licenseImage", "something.png", description: "if licenseImage is in datadiv, on page the img element should have the @src filled with the url");
		}
BookCopyrightAndLicenseTests