|
1 | 1 | #pragma warning disable ASPDEPR008 |
2 | | -[Explicit] |
3 | 2 | public class SeqIntegrationTests |
4 | 3 | { |
5 | | - [Fact] |
| 4 | + [Fact(Explicit = true)] |
6 | 5 | public Task Log() |
7 | 6 | { |
8 | 7 | var timestamp = DateTime.Now.ToString("o"); |
9 | 8 | var content = $"{{'@t':'{timestamp}','@mt':'Hello, {{User}}','User':'John'}}"; |
10 | 9 | return WriteAndVerify(content); |
11 | 10 | } |
12 | 11 |
|
13 | | - [Fact] |
| 12 | + [Fact(Explicit = true)] |
14 | 13 | public Task LogWithDoubleQuotes() |
15 | 14 | { |
16 | 15 | var timestamp = DateTime.Now.ToString("o"); |
17 | 16 | var content = $$"""{"@t":"{{timestamp}}","@mt":"Hello, {User}","User":"John"}"""; |
18 | 17 | return WriteAndVerify(content); |
19 | 18 | } |
20 | 19 |
|
21 | | - [Fact] |
| 20 | + [Fact(Explicit = true)] |
22 | 21 | public Task LogToController() |
23 | 22 | { |
24 | 23 | var timestamp = DateTime.Now.ToString("o"); |
25 | 24 | var content = $"{{'@t':'{timestamp}','@mt':'Hello, {{User}}','User':'John'}}"; |
26 | 25 | return WriteAndVerify(content, "/seqcontroller"); |
27 | 26 | } |
28 | 27 |
|
29 | | - [Fact] |
| 28 | + [Fact(Explicit = true)] |
30 | 29 | public Task LogNoTimestamp() |
31 | 30 | { |
32 | 31 | var content = "{'@mt':'LogNoTimestamp'}"; |
33 | 32 | return WriteAndVerify(content); |
34 | 33 | } |
35 | 34 |
|
36 | | - [Fact] |
| 35 | + [Fact(Explicit = true)] |
37 | 36 | public Task LogMultiple() |
38 | 37 | { |
39 | 38 | var content = """ |
|
0 commit comments