BloomTests.Book.TranslationGroupManagerTests.ShouldNormallyShowEditable_SituationsWhereNationalLanguagesShouldBeShown C# (CSharp) Method

ShouldNormallyShowEditable_SituationsWhereNationalLanguagesShouldBeShown() private method

        public void ShouldNormallyShowEditable_SituationsWhereNationalLanguagesShouldBeShown()
        {
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "V","N1" }, "", "", _collectionSettings.Object),
                "The data-default-languages calls for the vernacular and n1");
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "N1" }, "", "", _collectionSettings.Object),
                "The data-default-languages calls for the n1; it should show.");
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "N1","N2" }, "", "", _collectionSettings.Object),
                "The data-default-languages calls for both national languages");
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("es", new[] { "N1", "N2" }, "", "", _collectionSettings.Object),
                "The data-default-languages calls for both national languages");
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "auto" }, "fr", "es", _collectionSettings.Object),
                "Auto and Trilingual, so should show all three languages.");
            Assert.IsTrue(TranslationGroupManager.ShouldNormallyShowEditable("es", new[] { "auto" }, "fr", "es", _collectionSettings.Object),
                "Auto and Trilingual, so should show all three languages.");
        }