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

SetLicenseMetadata_CCLicenseWithFrenchNationalLanguage_DataDivHasFrenchDescription() private method

		public void SetLicenseMetadata_CCLicenseWithFrenchNationalLanguage_DataDivHasFrenchDescription()
		{
			_collectionSettings.Language1Iso639Code = "fr";
			_collectionSettings.Language2Iso639Code = "en";

			TestSetLicenseMetdataEffectOnDataDiv(new Metadata()
				{
					CopyrightNotice = "foo",
					License = new CreativeCommonsLicense(true, true, CreativeCommonsLicense.DerivativeRules.Derivatives)
				},
				startingDataDivContent: "",
				xpath: "//*[@data-book='licenseDescription' and @lang='fr' and contains(text(),'Vous')]", expectedCount: 1);
		}
BookCopyrightAndLicenseTests