Exemplo n.º 1
0
 public void SetUp()
 {
     rentals = Substitute.For <Rentals>();
     sut     = new VideoStoreClass(rentals);
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            VideoStoreClass vs = new VideoStoreClass(new Rentals());

            new MainUI(vs);
        }