Skip to content

Instantly share code, notes, and snippets.

@saymowan
Created September 14, 2020 00:53
Show Gist options
  • Save saymowan/c65dbdf14109f6815cb21eca2ce1a3ed to your computer and use it in GitHub Desktop.
Save saymowan/c65dbdf14109f6815cb21eca2ce1a3ed to your computer and use it in GitHub Desktop.
public static List<TestCaseData> ReturnDataUsingAPI()
{
var testcase = new List<TestCaseData>();
var users = APIHelpers.GetUsersInfoAPI();
Console.WriteLine(users);
foreach (var user in users)
{
testcase.Add(new TestCaseData(user.first_name.ToString(), user.email.ToString()));
}
return testcase;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment