12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface ISummaryView : IBaseView
|
||
|
|
{
|
||
|
|
void UpdateTestIds(string[] serializedValues);
|
||
|
|
string GetTestId();
|
||
|
|
void SetTestName(string testName);
|
||
|
|
}
|
||
|
|
}
|