24 lines
553 B
C#
24 lines
553 B
C#
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Untappd.Client.Net;
|
|
using Untappd.Net.Responses.UserInfo;
|
|
|
|
namespace Untappd.Net.UnitTests
|
|
{
|
|
[TestFixture]
|
|
public class Class1
|
|
{
|
|
[Test]
|
|
public void Test()
|
|
{
|
|
|
|
//var t = new Request.Request().Get<UnAuthenticatedUntappdCredentials, UserInfoRootobject>(ts, "tparnell");
|
|
//Console.WriteLine(t.response.user.first_name);
|
|
}
|
|
}
|
|
}
|