예제 #1
0
        public void TextMapHelperGetFileNameMap()
        {
            tlog.Debug(tag, $"TextMapHelperGetFileNameMap START");

            string url = "filePath";

            var map = TextMapHelper.GetFileNameMap(url);

            map.Find(0, "filename").Get(out string fileName);

            Assert.AreEqual(url, fileName, "Should be equal!");

            tlog.Debug(tag, $"TextMapHelperGetFileNameMap END (OK)");
        }