16 lines
272 B
C#
16 lines
272 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using RH_Engine;
|
|
|
|
namespace UnitTestRH
|
|
{
|
|
[TestClass]
|
|
public class UnitTest1
|
|
{
|
|
[TestMethod]
|
|
public void TestMethod1()
|
|
{
|
|
Command command = new Command("");
|
|
}
|
|
}
|
|
}
|