We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a74430 commit 4d25f9dCopy full SHA for 4d25f9d
1 file changed
tests/PropertyTests.cs
@@ -33,9 +33,14 @@ public void Changing_LineOrientation( )
33
prop?.SetValue( Orientation.Vertical );
34
//Assert.That( lv.LineRune, Is.EqualTo( Glyphs.VLine ) );
35
36
- // now try with a dim fill
37
- lv.Height = Dim.Fill( );
38
- lv.Width = 1;
+
+ Assert.Multiple(() =>
+ {
39
+ Assert.That(lv.Orientation, Is.EqualTo(Orientation.Vertical));
40
+ //Assert.That( lv.LineRune, Is.EqualTo( Glyphs.HLine ) );
41
+ Assert.That(lv.Width, Is.EqualTo(Dim.Absolute(1)));
42
+ Assert.That(lv.Height, Is.EqualTo(Dim.Fill()));
43
+ });
44
45
prop?.SetValue( Orientation.Horizontal );
46
0 commit comments