mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
* WIP keep path * Make new 'sticky filename' behaviour optional * Tests for new behaviour when selecting in TreeView * Add more tests, this time for table view navigation * Add the new style option into UICatalog scenario
This commit is contained in:
@@ -13,3 +13,20 @@ public class V2TestDrivers : IEnumerable<object []>
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator () => GetEnumerator ();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test cases for functions with signature <code>V2TestDriver d, bool someFlag</code>
|
||||
/// that enumerates all variations
|
||||
/// </summary>
|
||||
public class V2TestDrivers_WithTrueFalseParameter : IEnumerable<object []>
|
||||
{
|
||||
public IEnumerator<object []> GetEnumerator ()
|
||||
{
|
||||
yield return new object [] { V2TestDriver.V2Win,false };
|
||||
yield return new object [] { V2TestDriver.V2Net,false };
|
||||
yield return new object [] { V2TestDriver.V2Win,true };
|
||||
yield return new object [] { V2TestDriver.V2Net,true };
|
||||
}
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator () => GetEnumerator ();
|
||||
}
|
||||
Reference in New Issue
Block a user