You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
[](https://www.fuget.org/packages/Xunit.Microsoft.DependencyInjection)
5
5
6
6
# Xunit Dependency Injection framework
7
-
Xunit does not come with any built-in dependency injection features, therefore developers have to come up with a solution to recruit their favourite dependency injection framework in their tests.
7
+
Xunit does not support any built-in dependency injection features, therefore developers have to come up with a solution to recruit their favourite dependency injection framework in their tests.
8
8
9
-
This library brings in Microsoft's dependency injection container to Xunit scope by leveraging Xunit fixtures.
9
+
This library brings in Microsoft's dependency injection container to Xunit by leveraging Xunit's fixture.
10
10
11
11
## Getting started
12
12
@@ -49,7 +49,7 @@ Also, the test class should be decorated by the following attribute:
49
49
```
50
50
51
51
## Running tests in order
52
-
The library has a bonus feature that simplifies running tests in order. The test class does not have to be derived from ```TestBed<T>``` class though and it can apply to all Xunit classes.
52
+
The library also has a bonus feature that simplifies running tests in order. The test class does not have to be derived from ```TestBed<T>``` class though and it can apply to all Xunit classes.
53
53
54
54
Decorate your Xunit test class with the following attribute and associate ```TestOrder(...)``` with ```Fact``` and ```Theory```:
0 commit comments