19 lines
367 B
C#
19 lines
367 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tests
|
|
{
|
|
[TestClass()]
|
|
public class SvcrPlayTests
|
|
{
|
|
[TestMethod()]
|
|
public void evStopbuttonTest()
|
|
{
|
|
Assert.IsTrue(true);
|
|
}
|
|
}
|
|
} |