Skip to content

Instantly share code, notes, and snippets.

@Clancey
Created February 7, 2014 22:55
Show Gist options
  • Save Clancey/8873673 to your computer and use it in GitHub Desktop.
Save Clancey/8873673 to your computer and use it in GitHub Desktop.
using System;
using NUnit.Framework;
using System.Threading.Tasks;
using System.Threading;
using NUnit.Framework.Constraints;
namespace gMusic
{
[TestFixture]
public class SignInTests
{
[Test]
public async void SignIn ()
{
var api = new GoogleMusicApi ("1");
api.ClearCookies();
var signInPassed = await api.SignIn ("", "");
Console.WriteLine ("");
Assert.IsTrue (signInPassed);
Console.WriteLine ();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment