Пример #1
0
        public void OneArg()
        {
            string actual   = _helpers.DirectionalProperty("border", "12px");
            string expected = "border-top:12px;border-right:12px;border-bottom:12px;border-left:12px;";

            Assert.AreEqual(expected, actual);
        }
Пример #2
0
 /// <inheritdoc />
 public string BorderColor(params string[] args)
 {
     return(_helpers.DirectionalProperty("border-color", args));
 }