AppHarbor.AppHarborClient.GetTests C# (CSharp) Method

GetTests() public method

public GetTests ( string applicationSlug, string buildId ) : IEnumerable
applicationSlug string
buildId string
return IEnumerable
		public IEnumerable<Test> GetTests(string applicationSlug, string buildId)
		{
			CheckArgumentNull("applicationSlug", applicationSlug);

			var request = new RestRequest();
			request.Resource = "applications/{applicationSlug}/builds/{buildId}/tests";
			request.AddParameter("applicationSlug", applicationSlug, ParameterType.UrlSegment);
			request.AddParameter("buildId", buildId, ParameterType.UrlSegment);

			return ExecuteGet<List<Test>>(request);
		}
	}