mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
29 lines
478 B
C#
29 lines
478 B
C#
using mRemoteNG.UI.Controls;
|
|
using NUnit.Framework;
|
|
|
|
|
|
namespace mRemoteNGTests.Tree
|
|
{
|
|
public class ConnectionTreeTests
|
|
{
|
|
private ConnectionTree _connectionTree;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_connectionTree = new ConnectionTree();
|
|
}
|
|
|
|
[TearDown]
|
|
public void Teardown()
|
|
{
|
|
_connectionTree.Dispose();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void test()
|
|
{
|
|
}
|
|
}
|
|
} |