remove mkdocs specific syntax

This commit is contained in:
Marcello 2024-06-16 19:14:59 +02:00
parent 8d08c1964f
commit 8026e1465b
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
77 changed files with 1128 additions and 1128 deletions

View file

@ -5,7 +5,7 @@
## xUnit
```cs linenums="1"
```cs
using System;
using Xunit;
@ -37,7 +37,7 @@ For context cleanup, add the `IDisposable` interface to the test class, and put
## Mocking with Moq
```cs linenums="1"
```cs
var mockObj = new Mock<MockedType>();
mockObj.Setup(m => m.Method(It.IsAny<InputType>())).Returns(value);