We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ee88a commit c913210Copy full SHA for c913210
FunctionsTests/ClientTests.cs
@@ -13,8 +13,8 @@ namespace FunctionsTests
13
[TestClass]
14
public class ClientTests
15
{
16
- Client _client;
17
- string _token;
+ private Client _client = null!;
+ private string _token = null!;
18
19
[TestInitialize]
20
public void Initialize()
FunctionsTests/FunctionsTests.csproj
@@ -3,6 +3,7 @@
3
<PropertyGroup>
4
<TargetFramework>net8.0</TargetFramework>
5
<IsPackable>false</IsPackable>
6
+ <Nullable>enable</Nullable>
7
</PropertyGroup>
8
9
<ItemGroup>
0 commit comments