1
有沒有什麼我可以用通配符(任何大於0的數字)替換'1',這樣任何傳入的東西總是返回相同的東西等?如何測試任何整數
[TestMethod]
public void GameManagersEventsIndexReturnedWhenUserHasNoLocations()
{
// Arrange
List<CustomerLocation> locations = new List<CustomerLocation>();
locations.Add(new CustomerLocation() { Active = true, Name = "Ted" });
customerLocationDataProvider.Setup(x => x.GetAllForUserId(1)).Returns(locations);
customerLocationDataProvider.Setup(x => x.GetAllForUserId(1).Count).Returns(0);
我編輯了自己的冠軍。請參閱:「[應該在其標題中包含」標籤「](http://meta.stackexchange.com/questions/19190/)」,其中的共識是「不,他們不應該」。 –
@John Saunders謝謝 – 1Canuck16