-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason Fauchelle
committed
May 15, 2015
1 parent
5a9d64f
commit fa5054d
Showing
4 changed files
with
71 additions
and
2 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
22 changes: 22 additions & 0 deletions
22
Mindscape.Raygun4Net.Tests/Model/FakeRaygunRequestMessageBuilder.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,22 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Specialized; | ||
using System.Linq; | ||
using System.Text; | ||
using Mindscape.Raygun4Net.Builders; | ||
|
||
namespace Mindscape.Raygun4Net.Tests | ||
{ | ||
public class FakeRaygunRequestMessageBuilder : RaygunRequestMessageBuilder | ||
{ | ||
public static Dictionary<string, string> ExposeGetIgnoredFormValues(NameValueCollection form, Func<string, bool> ignore) | ||
{ | ||
return GetIgnoredFormValues(form, ignore); | ||
} | ||
|
||
public static string ExposeStripIgnoredFormData(string rawData, Dictionary<string, string> ignored) | ||
{ | ||
return StripIgnoredFormData(rawData, ignored); | ||
} | ||
} | ||
} |
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