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

ShouldNormallyShowEditable_SituationsWhereFirstNationalLanguageShouldNotBeShown() private method

        public void ShouldNormallyShowEditable_SituationsWhereFirstNationalLanguageShouldNotBeShown()
        {
            Assert.IsFalse(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "V" }, "fr", "", _collectionSettings.Object),
                "The data-default-languages calls only for the vernacular ");
            Assert.IsFalse(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "V" }, "fr", "", _collectionSettings.Object),
                "The data-default-languages calls only for the vernacular ");
            Assert.IsFalse(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "N2" }, "", "", _collectionSettings.Object),
                "The data-default-languages calls for the second national language only ");
            Assert.IsFalse(TranslationGroupManager.ShouldNormallyShowEditable("fr", new[] { "auto" }, "es", "", _collectionSettings.Object),
                "Bilingual, the second language is set to the second national language.");
        }