public void Setup()
        {
            _junctionColorProvider = Substitute.For <IJunctionColorProvider>();
            _junctionColorProvider.NonRelativeColor.Returns(x => Color.Azure);

            _junctionStyler = new JunctionStyler(_junctionColorProvider);
        }
Esempio n. 2
0
 public JunctionStyler(IJunctionColorProvider junctionColorProvider)
 {
     _junctionColorProvider = junctionColorProvider;
 }