Skip to content

Commit c174361

Browse files
committed
Update Readme.md
1 parent ce2f743 commit c174361

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ More examples, including parametrized model and family tests, are available in t
194194

195195
To avoid repeating the `TestExecutor` attribute for every test, you can [register](https://tunit.dev/docs/advanced/extension-points/#registering-a-test-executor) the executor globally using one of the following methods:
196196

197-
- Add the attribute to any .cs file in your project (e.g., TestsConfiguration.cs):
197+
- Add the assembly-level attribute to any .cs file in your project (e.g., TestsConfiguration.cs):
198198

199199
```csharp
200200
using Nice3point.TUnit.Revit.Executors;
@@ -203,7 +203,7 @@ To avoid repeating the `TestExecutor` attribute for every test, you can [registe
203203
[assembly: TestExecutor<RevitThreadExecutor>]
204204
```
205205

206-
- Add the attribute directly to your .csproj file:
206+
- Or add the attribute directly to your .csproj file:
207207

208208
```xml
209209
<!-- Global Test Executor Registration -->
@@ -217,9 +217,9 @@ To avoid repeating the `TestExecutor` attribute for every test, you can [registe
217217

218218
### Revit Environment
219219

220-
TUnit initializes Revit with the `English - United States` language and the `C:\Program Files\Autodesk\Revit {version}` installation path. To override these defaults, use assembly-level attributes:
220+
TUnit initializes Revit with the `English - United States` language and the `C:\Program Files\Autodesk\Revit {version}` installation path. To override these defaults:
221221

222-
- Add the attributes to any .cs file in your project (e.g., TestsConfiguration.cs):
222+
- Add the assembly-level attributes to any .cs file in your project (e.g., TestsConfiguration.cs):
223223

224224
```csharp
225225
using Nice3point.Revit.Injector.Attributes;
@@ -228,7 +228,7 @@ TUnit initializes Revit with the `English - United States` language and the `C:\
228228
[assembly: RevitInstallationPath("D:\Autodesk\Revit Preview")]
229229
```
230230

231-
- Add the attributes directly to your .csproj file:
231+
- Or add the attributes directly to your .csproj file:
232232

233233
```xml
234234
<!-- Revit Environment Configuration -->

0 commit comments

Comments
 (0)