mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Refactored test namespaces. Moved some tests that were in wrong project. Code cleanup * Parrallel -> Parallel
326 lines
7.7 KiB
C#
326 lines
7.7 KiB
C#
using Xunit.Abstractions;
|
|
|
|
namespace UnitTests_Parallelizable.DrawingTests;
|
|
|
|
public class StraightLineTests (ITestOutputHelper output)
|
|
{
|
|
private readonly ITestOutputHelper _output = output;
|
|
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
1,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
2,
|
|
0,
|
|
0,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
3,
|
|
0,
|
|
0,
|
|
3,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
-1,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
-2,
|
|
-1,
|
|
0,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
0,
|
|
-3,
|
|
-2,
|
|
0,
|
|
3,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
0,
|
|
1,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
1,
|
|
1,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
2,
|
|
1,
|
|
0,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
3,
|
|
1,
|
|
0,
|
|
3,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
-1,
|
|
1,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
-2,
|
|
0,
|
|
0,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
1,
|
|
0,
|
|
-3,
|
|
-1,
|
|
0,
|
|
3,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-1,
|
|
0,
|
|
0,
|
|
-1,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
-1,
|
|
1,
|
|
0,
|
|
-1,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-1,
|
|
-1,
|
|
1,
|
|
-1,
|
|
-1,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-1,
|
|
-1,
|
|
2,
|
|
-1,
|
|
-1,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-10,
|
|
-10,
|
|
10,
|
|
-10,
|
|
-10,
|
|
10,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
0,
|
|
-1,
|
|
-1,
|
|
0,
|
|
-1,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-1,
|
|
-1,
|
|
-1,
|
|
-1,
|
|
-1,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-1,
|
|
-1,
|
|
-2,
|
|
-2,
|
|
-1,
|
|
2,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Horizontal,
|
|
-10,
|
|
-10,
|
|
-10,
|
|
-19,
|
|
-10,
|
|
10,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
1,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
2,
|
|
0,
|
|
0,
|
|
1,
|
|
2
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
3,
|
|
0,
|
|
0,
|
|
1,
|
|
3
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
-1,
|
|
0,
|
|
0,
|
|
1,
|
|
1
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
-2,
|
|
0,
|
|
-1,
|
|
1,
|
|
2
|
|
)]
|
|
[InlineData (
|
|
Orientation.Vertical,
|
|
0,
|
|
0,
|
|
-3,
|
|
0,
|
|
-2,
|
|
1,
|
|
3
|
|
)]
|
|
[Theory]
|
|
public void Viewport (
|
|
Orientation orientation,
|
|
int x,
|
|
int y,
|
|
int length,
|
|
int expectedX,
|
|
int expectedY,
|
|
int expectedWidth,
|
|
int expectedHeight
|
|
)
|
|
{
|
|
var sl = new StraightLine (new (x, y), length, orientation, LineStyle.Single);
|
|
|
|
Assert.Equal (new (expectedX, expectedY, expectedWidth, expectedHeight), sl.Bounds);
|
|
}
|
|
}
|