Ejemplo n.º 1
0
 public DistributorWnba(IDataAccessWnba dataAccessWnba, IDatastore datastore, IPusherUtil pusherUtil)
 {
     _datastore  = datastore;
     PusherUtil  = pusherUtil;
     _marketList = dataAccessWnba.GetMarkets();
     InitializeLists();
 }
Ejemplo n.º 2
0
        public void GetMarketsReturnsNonEmptyRecordsetTest()
        {
            // Arrange

            // Act
            Dictionary <int, string> marketsDictionary = _dataAccessWnba.GetMarkets();

            // Assert
            Assert.IsTrue(marketsDictionary.Count > 0);
        }