cloutier--bird.makeup/src/Tests/BirdsiteLive.Cryptography.Tests/MagicKeyTests.cs

19 lines
419 B
C#
Raw Normal View History

2020-06-04 22:53:38 -04:00
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
2021-02-14 12:28:38 -05:00
using NuGet.Frameworks;
2020-06-04 22:53:38 -04:00
namespace BirdsiteLive.Cryptography.Tests
{
[TestClass]
public class MagicKeyTests
{
[TestMethod]
2021-02-14 12:28:38 -05:00
public void Test()
2020-06-04 22:53:38 -04:00
{
var g = MagicKey.Generate();
var magicKey = new MagicKey(g.PrivateKey);
2021-02-14 12:28:38 -05:00
Assert.IsNotNull(magicKey);
2020-06-04 22:53:38 -04:00
}
}
}