Exemplo n.º 1
0
        public void GetNameValuePair_RealData()
        {
            var input = FileContent.GetSolidData();

            var result = FontAwesomeMap.GetNameValuePair(input);

            result.First().Key.ShouldBe("Ad");
        }
Exemplo n.º 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");
        }
Exemplo n.º 3
0
        public void ReformatName()
        {
            var input = "address-book";

            var result = FontAwesomeMap.ReformatName(input);

            Debug.WriteLine(result);

            result.ShouldBe("AddressBook");
        }