mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
16 lines
407 B
C#
16 lines
407 B
C#
using System.Collections;
|
|
using TerminalGuiFluentTesting;
|
|
|
|
namespace IntegrationTests.FluentTests;
|
|
|
|
public class V2TestDrivers : IEnumerable<object []>
|
|
{
|
|
public IEnumerator<object []> GetEnumerator ()
|
|
{
|
|
yield return new object [] { V2TestDriver.V2Win };
|
|
yield return new object [] { V2TestDriver.V2Net };
|
|
}
|
|
|
|
IEnumerator IEnumerable.GetEnumerator () => GetEnumerator ();
|
|
}
|