Skip to content

Commit

Permalink
Fix .net 6 unit test approvals
Browse files Browse the repository at this point in the history
  • Loading branch information
glennawatson committed Aug 19, 2021
1 parent 0794a56 commit 7e7dfc6
Show file tree
Hide file tree
Showing 3 changed files with 781 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ namespace Splat
}
public enum KnownColor
{
Empty = 0,
ActiveBorder = 1,
ActiveCaption = 2,
ActiveCaptionText = 3,
Expand Down Expand Up @@ -428,10 +429,10 @@ namespace Splat
public override int GetHashCode() { }
public float GetHue() { }
public float GetSaturation() { }
public int ToArgb() { }
public uint ToArgb() { }
public Splat.KnownColor ToKnownColor() { }
public override string ToString() { }
public static Splat.SplatColor FromArgb(int argb) { }
public static Splat.SplatColor FromArgb(uint argb) { }
public static Splat.SplatColor FromArgb(int alpha, Splat.SplatColor baseColor) { }
public static Splat.SplatColor FromArgb(int red, int green, int blue) { }
public static Splat.SplatColor FromArgb(int alpha, int red, int green, int blue) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ namespace Splat
}
public enum KnownColor
{
Empty = 0,
ActiveBorder = 1,
ActiveCaption = 2,
ActiveCaptionText = 3,
Expand Down Expand Up @@ -426,10 +427,10 @@ namespace Splat
public override int GetHashCode() { }
public float GetHue() { }
public float GetSaturation() { }
public int ToArgb() { }
public uint ToArgb() { }
public Splat.KnownColor ToKnownColor() { }
public override string ToString() { }
public static Splat.SplatColor FromArgb(int argb) { }
public static Splat.SplatColor FromArgb(uint argb) { }
public static Splat.SplatColor FromArgb(int alpha, Splat.SplatColor baseColor) { }
public static Splat.SplatColor FromArgb(int red, int green, int blue) { }
public static Splat.SplatColor FromArgb(int alpha, int red, int green, int blue) { }
Expand Down
Loading

0 comments on commit 7e7dfc6

Please sign in to comment.