Skip to content

Commit 70b352f

Browse files
John Reesemairaw
authored andcommitted
Add missing pass (#6505)
1 parent 56f8c32 commit 70b352f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/core/testing/unit-testing-with-dotnet-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ namespace Prime.UnitTests.Services
129129

130130
The `[Fact]` attribute indicates a test method that is run by the test runner. From the *PrimeService.Tests* folder, execute [`dotnet test`](../tools/dotnet-test.md) to build the tests and the class library and then run the tests. The xUnit test runner contains the program entry point to run your tests. `dotnet test` starts the test runner using the unit test project you've created.
131131

132-
Your test fails. You haven't created the implementation yet. Make this test by writing the simplest code in the `PrimeService` class that works. Replace the existing `IsPrime` method implementation with the following code:
132+
Your test fails. You haven't created the implementation yet. Make this test pass by writing the simplest code in the `PrimeService` class that works. Replace the existing `IsPrime` method implementation with the following code:
133133

134134
```csharp
135135
public bool IsPrime(int candidate)

0 commit comments

Comments
 (0)