Add test for device blows up with power. Still needs lots of pieces before it is done.

This commit is contained in:
2018-02-14 12:29:54 +00:00
parent 13165c402c
commit 5b3be85e99
3 changed files with 14 additions and 1 deletions

View File

@ -1700,6 +1700,18 @@ namespace EduNetworkBuilder
}
}
public void RegisterDeviceReplaced(string source)
{
foreach (NetTest one in NetTests)
{
if (one.sHost == source && one.TheTest == NetTestType.DeviceBlowsUpWithPower)
{
one.SetDone();
}
}
}
/****************************************
* Do On All Devices
* **************************************/