Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove redundant DummyStructWithEnumInterfaces members #1383

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 0 additions & 51 deletions src/Humanizer.Tests.Shared/DehumanizeToEnumTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,57 +87,6 @@ public int CompareTo(object obj) =>

public string ToString(string format, IFormatProvider formatProvider) =>
throw new NotImplementedException();

public TypeCode GetTypeCode() =>
throw new NotImplementedException();

public bool ToBoolean(IFormatProvider provider) =>
throw new NotImplementedException();

public char ToChar(IFormatProvider provider) =>
throw new NotImplementedException();

public sbyte ToSByte(IFormatProvider provider) =>
throw new NotImplementedException();

public byte ToByte(IFormatProvider provider) =>
throw new NotImplementedException();

public short ToInt16(IFormatProvider provider) =>
throw new NotImplementedException();

public ushort ToUInt16(IFormatProvider provider) =>
throw new NotImplementedException();

public int ToInt32(IFormatProvider provider) =>
throw new NotImplementedException();

public uint ToUInt32(IFormatProvider provider) =>
throw new NotImplementedException();

public long ToInt64(IFormatProvider provider) =>
throw new NotImplementedException();

public ulong ToUInt64(IFormatProvider provider) =>
throw new NotImplementedException();

public float ToSingle(IFormatProvider provider) =>
throw new NotImplementedException();

public double ToDouble(IFormatProvider provider) =>
throw new NotImplementedException();

public decimal ToDecimal(IFormatProvider provider) =>
throw new NotImplementedException();

public DateTime ToDateTime(IFormatProvider provider) =>
throw new NotImplementedException();

public string ToString(IFormatProvider provider) =>
throw new NotImplementedException();

public object ToType(Type conversionType, IFormatProvider provider) =>
throw new NotImplementedException();
}

enum DummyEnum
Expand Down