-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve readability of assertion failure messages (#838)
* Move BecauseTests to separate project using TUnit as Framework * Simplify some messages * Simplify remaining messages * Fix implementation for AND/OR conditions * Include Expression in message * Fix failing tests * Rename `Passes` to `GetResult` * Finish sentence with a dot * Implement review comments * Use spaces instead of tabs
- Loading branch information
Showing
81 changed files
with
2,208 additions
and
1,757 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
global using TUnit.Core; | ||
global using TUnit.Assertions.Exceptions; | ||
global using TUnit.Assertions.Extensions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TUnit\TUnit.csproj" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.