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

SetLicenseMetadata_CCLicense_LicenseImageAddedToDataDiv() private method

		public void SetLicenseMetadata_CCLicense_LicenseImageAddedToDataDiv()
		{
			TestSetLicenseMetdataEffectOnDataDiv(new Metadata()
			{
				CopyrightNotice = "foo",
				License = new CreativeCommonsLicense(true,true, CreativeCommonsLicense.DerivativeRules.Derivatives)
			},
			startingDataDivContent: "",
			xpath: "//*[@data-book='licenseImage' and text()='license.png']",
			expectedCount: 1);
		}
		[Test]
BookCopyrightAndLicenseTests