1
2
3
4
5
6
7
8
9
10
11
12
13
| using System;
| namespace OpenTap.Engine.UnitTests
| {
| class UserInputTestImpl : IUserInputInterface
| {
| public Action<object> Func { get; set; } = _ => { };
|
| public void RequestUserInput(object dataObject, TimeSpan Timeout, bool modal)
| {
| Func(dataObject);
| }
| }
| }
|
|