treasurechest/tests/profile/testLoad.cs
2020-06-04 23:16:05 -05:00

25 lines
409 B
C#

using NUnit.Framework;
using chestcrypto.identity;
using chestcrypto;
using chestcrypto.profile;
using System;
using System.IO;
using System.Linq;
namespace testProfileLoad
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void TestLoad(){
RestoreKeyring restore = new RestoreKeyring("test.profile");
}
}
}