Skip to content

Commit

Permalink
Fix approval test
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Mar 13, 2019
1 parent ef68700 commit 91fb03e
Showing 1 changed file with 10 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ namespace Humanizer.Bytes
public static Humanizer.Bytes.ByteSize FromMegabytes(double value) { }
public static Humanizer.Bytes.ByteSize FromTerabytes(double value) { }
public override int GetHashCode() { }
public static Humanizer.Bytes.ByteSize +(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static Humanizer.Bytes.ByteSize --(Humanizer.Bytes.ByteSize b) { }
public static bool ==(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static bool >(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static bool >=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static Humanizer.Bytes.ByteSize ++(Humanizer.Bytes.ByteSize b) { }
public static bool !=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static bool <(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static bool <=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { }
public static Humanizer.Bytes.ByteSize -(Humanizer.Bytes.ByteSize b) { }
public static Humanizer.Bytes.ByteSize Parse(string s) { }
public Humanizer.Bytes.ByteSize Subtract(Humanizer.Bytes.ByteSize bs) { }
public string ToFullWords() { }
Expand Down Expand Up @@ -1052,21 +1062,6 @@ namespace Humanizer
{
public static string Tupleize(this int input) { }
}
public enum EnglishArticles
{
a,
an,
the,
A,
An,
The
}
public static class EnglishArticle
{
public static string[] AppendArticlePrefix(string[] items) { }
public static string[] PrependArticleSuffix(string[] appended) { }
private static string ToOriginalFormat(string[] appended, string suffix, int i) { }
}
}
namespace Humanizer.Configuration
{
Expand Down

0 comments on commit 91fb03e

Please sign in to comment.