2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2023-02-27 11:28:21 +00:00
|
|
|
|
/// Copyright (c) 2013-2023 Sensus Slovensko a.s.
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2023-02-27 11:28:21 +00:00
|
|
|
|
using Results.Entities;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiBridge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TestCompletedEventArgs : EventArgs
|
|
|
|
|
|
{
|
2016-01-03 01:05:35 +00:00
|
|
|
|
public string TestName;
|
2023-02-27 11:28:21 +00:00
|
|
|
|
public TestRslt TestRslt; /// If null => just redraw results
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
2023-02-27 11:28:21 +00:00
|
|
|
|
public TestCompletedEventArgs(string testName, TestRslt testRslt)
|
2014-07-28 07:54:35 +00:00
|
|
|
|
{
|
2023-02-27 11:28:21 +00:00
|
|
|
|
TestName = testName;
|
|
|
|
|
|
TestRslt = testRslt;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|