Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Sep 16, 2024
1 parent 7a6d89b commit 980a081
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 23 deletions.
8 changes: 4 additions & 4 deletions docs/anonymous-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Task Anon()
});
}
```
<sup><a href='/src/Verify.NUnit.Tests/VerifyObjectSamples.cs#L42-L66' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonNUnit' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.NUnit.Tests/VerifyObjectSamples.cs#L40-L64' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonNUnit' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down Expand Up @@ -68,7 +68,7 @@ public Task Anon()
});
}
```
<sup><a href='/src/Verify.XunitV3.Tests/VerifyObjectSamples.cs#L23-L47' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonXunit' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.XunitV3.Tests/VerifyObjectSamples.cs#L21-L45' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonXunit' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down Expand Up @@ -98,7 +98,7 @@ public Task Anon()
});
}
```
<sup><a href='/src/Verify.Fixie.Tests/VerifyObjectSamples.cs#L39-L62' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonFixie' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Fixie.Tests/VerifyObjectSamples.cs#L37-L60' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonFixie' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down Expand Up @@ -129,7 +129,7 @@ public Task Anon()
});
}
```
<sup><a href='/src/Verify.MSTest.Tests/VerifyObjectSamples.cs#L25-L49' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonMSTest' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.MSTest.Tests/VerifyObjectSamples.cs#L23-L47' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonMSTest' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down
3 changes: 3 additions & 0 deletions src/StaticSettingsTests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Global using directives

global using Argon;
4 changes: 1 addition & 3 deletions src/StaticSettingsTests/SortedPropertiesTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Argon;

public class SortedPropertiesTests :
public class SortedPropertiesTests :
BaseTest
{
public SortedPropertiesTests() =>
Expand Down
3 changes: 3 additions & 0 deletions src/Verify.Fixie.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Global using directives

global using Argon;
4 changes: 1 addition & 3 deletions src/Verify.Fixie.Tests/VerifyObjectSamples.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Argon;

// ReSharper disable NotAccessedField.Local
// ReSharper disable NotAccessedField.Local

// Non-nullable field is uninitialized
#pragma warning disable CS8618
Expand Down
3 changes: 2 additions & 1 deletion src/Verify.MSTest.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
global using System.Diagnostics;
global using System.Diagnostics;
global using Argon;
2 changes: 0 additions & 2 deletions src/Verify.MSTest.Tests/VerifyObjectSamples.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using Argon;

// ReSharper disable NotAccessedField.Local

// Non-nullable field is uninitialized
Expand Down
3 changes: 2 additions & 1 deletion src/Verify.NUnit.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
global using NUnit.Framework.Interfaces;
global using Argon;
global using NUnit.Framework.Interfaces;
global using NUnit.Framework.Internal;
4 changes: 1 addition & 3 deletions src/Verify.NUnit.Tests/VerifyObjectSamples.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Argon;

// ReSharper disable NotAccessedField.Local
// ReSharper disable NotAccessedField.Local

// Non-nullable field is uninitialized
#pragma warning disable CS8618
Expand Down
3 changes: 3 additions & 0 deletions src/Verify.Xunit.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Global using directives

global using Argon;
4 changes: 1 addition & 3 deletions src/Verify.Xunit.Tests/VerifyObjectSamples.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Argon;

// ReSharper disable NotAccessedField.Local
// ReSharper disable NotAccessedField.Local

// Non-nullable field is uninitialized
#pragma warning disable CS8618
Expand Down
3 changes: 3 additions & 0 deletions src/Verify.XunitV3.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Global using directives

global using Argon;
4 changes: 1 addition & 3 deletions src/Verify.XunitV3.Tests/VerifyObjectSamples.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Argon;

// ReSharper disable NotAccessedField.Local
// ReSharper disable NotAccessedField.Local

// Non-nullable field is uninitialized
#pragma warning disable CS8618
Expand Down

0 comments on commit 980a081

Please sign in to comment.