public void SetUp() { rentals = Substitute.For <Rentals>(); sut = new VideoStoreClass(rentals); }
static void Main(string[] args) { VideoStoreClass vs = new VideoStoreClass(new Rentals()); new MainUI(vs); }