Beispiel #1
0
        public void ShouldReturnHex()
        {
            var service = new ColorService(_dataManager.Object, _randomNumberGenerator);
            var hex     = service.GetHexColor();

            hex.ShouldStartWith("#");
            hex.Length.ShouldBe(7);
        }
Beispiel #2
0
 private string GetHexColorContext()
 {
     return(_service.GetHexColor());
 }