public static SkyStoresModel GetSkyStore() { var testStore = new SkyStoresModel(); testStore.Rentals = GetStoreRentals(); testStore.BuyAndKeep = GetStoreBuyAndKeep(); testStore.Total = 100; return(testStore); }
public void Model_SkyStore_Valid_Exists() { var model = new SkyStoresModel(); Assert.IsNotNull(model); }