Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/etl/EtlTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 2.0.0 of the canonical data.
// This file was auto-generated based on version 2.0.1 of the canonical data.

using System.Collections.Generic;
using Xunit;
Expand Down
12 changes: 6 additions & 6 deletions exercises/matrix/MatrixTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 1.1.0 of the canonical data.
// This file was auto-generated based on version 1.3.0 of the canonical data.

using Xunit;

Expand Down Expand Up @@ -26,10 +26,10 @@ public void Extract_row_where_numbers_have_different_widths()
}

[Fact(Skip = "Remove to run test")]
public void Can_extract_row_from_non_square_matrix()
public void Can_extract_row_from_non_square_matrix_with_no_corresponding_column()
{
var sut = new Matrix("1 2 3\n4 5 6\n7 8 9\n8 7 6");
Assert.Equal(new[] { 7, 8, 9 }, sut.Row(3));
Assert.Equal(new[] { 8, 7, 6 }, sut.Row(4));
}

[Fact(Skip = "Remove to run test")]
Expand All @@ -47,10 +47,10 @@ public void Can_extract_column()
}

[Fact(Skip = "Remove to run test")]
public void Can_extract_column_from_non_square_matrix()
public void Can_extract_column_from_non_square_matrix_with_no_corresponding_row()
{
var sut = new Matrix("1 2 3\n4 5 6\n7 8 9\n8 7 6");
Assert.Equal(new[] { 3, 6, 9, 6 }, sut.Column(3));
var sut = new Matrix("1 2 3 4\n5 6 7 8\n9 8 7 6");
Assert.Equal(new[] { 4, 8, 6 }, sut.Column(4));
}

[Fact(Skip = "Remove to run test")]
Expand Down