added all unit tests; parallel tasks

This commit is contained in:
test
2019-04-12 17:15:51 +02:00
parent bbd1a512ff
commit 9dff0675e9
31 changed files with 971 additions and 2 deletions

View File

@ -4,6 +4,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VCRlogic;
namespace Tests
{
@ -11,9 +12,19 @@ namespace Tests
public class SvcrPlayTests
{
[TestMethod()]
public void evStopbuttonTest()
public void initTestTape()
{
Assert.IsTrue(true);
SMtape.initSMtape();
if (SMtape.getState() is StapeNoTapeIn)
{
Assert.IsTrue(true);
}
else
{
Assert.IsTrue(false);
}
}
}
}