added all unit tests; parallel tasks
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user