Files
.NETGravatarWrapper/GravatarWrapper.Test/UnitTest1.cs
Tommy Parnell 9364a3e4ea initial commit
2014-01-26 01:54:26 -05:00

24 lines
563 B
C#

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace GravatarWrapper.Test
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
var req = GravatarWrapper.Request("test@mctest.com", 400);
if (req != null)
{
req.Save(@"c:\users\test\Desktop\bmp.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
}
else
{
Assert.Fail();
}
}
}
}