-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare for RTM * Tweaks * Add test to verify JSON serialization * Remove SimpleJson * Remove unused code --------- Co-authored-by: Brandon Ording <bording@gmail.com>
- Loading branch information
1 parent
6b5b99c
commit 8bae31f
Showing
16 changed files
with
51 additions
and
2,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
...erviceBus.Metrics.ServiceControl.AcceptanceTests/ScenarioDescriptors/EnvironmentHelper.cs
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
src/NServiceBus.Metrics.ServiceControl.AcceptanceTests/ScenarioDescriptors/TypeScanner.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/NServiceBus.Metrics.ServiceControl.Tests/ApprovalFiles/APIApprovals.Approve.approved.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...erviceControl.Tests/ApprovalFiles/EndpointMetadataTests.Verify_serialization.approved.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"PluginVersion":3,"LocalAddress":"localAddress"} |
19 changes: 19 additions & 0 deletions
19
src/NServiceBus.Metrics.ServiceControl.Tests/EndpointMetadataTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace NServiceBus.Metrics.ServiceControl.Tests | ||
{ | ||
using NServiceBus.Metrics.ServiceControl.ServiceControlReporting; | ||
using NUnit.Framework; | ||
using Particular.Approvals; | ||
|
||
[TestFixture] | ||
class EndpointMetadataTests | ||
{ | ||
[Test] | ||
public void Verify_serialization() | ||
{ | ||
var endpointMetadata = new EndpointMetadata("localAddress"); | ||
var json = endpointMetadata.ToJson(); | ||
|
||
Approver.Verify(json); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.