public void ViewStoreNoPremission() { StoreShoppingService liorSession = (StoreShoppingService)market.GetStoreShoppingService(ref userService); MarketAnswer ans = liorSession.ViewStoreInfo("X"); Assert.AreEqual((int)ViewStoreStatus.InvalidUser, ans.Status); }
public void ViewStoreBadInputTest() { StoreShoppingService liorSession = (StoreShoppingService)market.GetStoreShoppingService(ref userService); liorSession.MakeGuest(); MarketAnswer ans = liorSession.ViewStoreInfo("'X"); Assert.AreEqual((int)StoreEnum.BadInput, ans.Status); }
public void ViewStoreStoreNotFound() { StoreShoppingService liorSession = (StoreShoppingService)market.GetStoreShoppingService(ref userService); liorSession.MakeGuest(); MarketAnswer ans = liorSession.ViewStoreInfo("notStore"); Assert.AreEqual((int)ViewStoreStatus.NoStore, ans.Status); }