10 lines
149 B
C#
10 lines
149 B
C#
using System;
|
|
|
|
namespace TBF.BenchControl.TestMethods.PulsesTestManual
|
|
{
|
|
interface IHasGetPassed
|
|
{
|
|
bool GetPassed(int i);
|
|
}
|
|
}
|