public void GetFormatAsStringDefaultTest() { FlickrSearchRequest request = new FlickrSearchRequest(); string format = request.GetFormatAsString(); Assert.AreEqual(Constants.JSON, format); }
public void GetFormatAsStringJsonTest() { FlickrSearchRequest request = new FlickrSearchRequest(); request.Format = eSupportedFormat.JSON; string format = request.GetFormatAsString(); Assert.AreEqual(Constants.JSON, format); }