BloomTests.BloomFileLocatorTests.GetBestLocalizedFile_EnglishIsCurrentLang_GetEnglishOne C# (CSharp) Method

GetBestLocalizedFile_EnglishIsCurrentLang_GetEnglishOne() private method

        public void GetBestLocalizedFile_EnglishIsCurrentLang_GetEnglishOne()
        {
            var englishPath = BloomFileLocator.DirectoryOfTheApplicationExecutable.CombineForPath(
                "../browser/templates/xMatter/Traditional-XMatter/description-en.txt");
            var bestLocalizedFile = BloomFileLocator.GetBestLocalizedFile(englishPath);
            Assert.AreEqual(englishPath, bestLocalizedFile);
        }