Exemple #1
0
        public void GetNameValuePair_RealData()
        {
            var input = FileContent.GetSolidData();

            var result = FontAwesomeMap.GetNameValuePair(input);

            result.First().Key.ShouldBe("Ad");
        }
Exemple #2
0
        public void GetNameValuePair()
        {
            const string input = "ad\r\nf641\r\naddress-book\nf2b9";

            var result = FontAwesomeMap.GetNameValuePair(input);

            result.Count.ShouldBe(2);
            result.First().Key.ShouldBe("Ad");
        }