Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8589003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:56:23+00:00 2026-06-11T22:56:23+00:00

I am adding some test coverage to some existing code. There are about 20

  • 0

I am adding some test coverage to some existing code. There are about 20 classes–all derivatives of the same base class–which would result in very similar and repetitive test methods. Instead, what I’m trying to do is crate a abstract test class which exposes some abstract methods for handling the unique details of the derived class under test.

This was working well until I came to testing the ToString override. Basically, the test method (which you’ll recall lives in an abstract base class) is asserting the equality of an expected string value and the result of the ToString method executed on an instance of my generic type as provided by on the afore mentioned abstract methods. However, rather than calling the ToString override, as I was expecting, the standard object implementation is invoked instead, returning the fully-qualified name of the object.

So, the question: how can I call the ToString override of a class when dealing with a generically typed instance?

I expect this question can be answered with a better understanding of the fundamentals of generic types so, in the interest of brevity, I’m not posting any code. If I’ve underestimated the situation, please let me know and I’ll add the relevant code.

Thanks in advance!

EDIT ==> CODE 🙂

public abstract class KeyTestsBase<TKey, TKeyInterface> 
    where TKeyInterface : class
    where TKey : class, IKeyParser<TKey>
{
    protected readonly Mock<TKeyInterface> MockKey = new Mock<TKeyInterface>();

    protected abstract string ExpectedStringValue { get; }

    [Test]
    public void ToString_produces_correct_string_value()
    {
        // Arrange
        SetUpValidMock();

        // Act
        var key = BuildKey(MockKey.Object);

        var keyValue = BuildKey(MockKey.Object).ToString();

        // Assert
        Assert.AreEqual(ExpectedStringValue, keyValue);
    }

    protected abstract void SetUpValidMock();

    protected abstract TKey BuildKey(TKeyInterface keyInterface);
}

[TestFixture]
public class AdditiveProductKeyTests : KeyTestsBase<AdditiveProductKey, IAdditiveProductKey>
{
    private const int VALID_PRODUCT_KEY = 123;
    private const string VALID_PRODUCT_KEY_STRING = "123";
    private const string VALID_PARSE_INPUT = "123";

    #region Overrides of KeyTestsBase<AdditiveProductKey,IAdditiveProductKey>

    protected override string ExpectedStringValue
    {
        get { return VALID_PRODUCT_KEY_STRING; }
    }

    protected override void SetUpValidMock()
    {
        MockKey.SetupGet(m => m.AdditiveProductKey_Id).Returns(VALID_PRODUCT_KEY);
    }

    protected override AdditiveProductKey BuildKey(IAdditiveProductKey keyInterface)
    {
        return new AdditiveProductKey(keyInterface);
    }

    #endregion
}

Here’s an example of one of the many Key classes, contrary to @Marc’s suspicion, you’ll note that the ToString method is overridden.

public class AdditiveProductKey : KeyBaseClass<AdditiveProductKey>, IKey<AdditiveProduct>, IAdditiveProductKey
{
    #region constructors and fields

    private readonly int _id;

    public AdditiveProductKey() : this(0) { }

    public AdditiveProductKey(IAdditiveProductKey additiveProductKey)
        :this(additiveProductKey.AdditiveProductKey_Id) { }

    private AdditiveProductKey(int id)
    {
        _id = id;
    }

    #endregion

    public Expression<Func<AdditiveProduct, bool>> FindByPredicate
    {
        get { return (p => p.Id == _id); }
    }

    protected override AdditiveProductKey ParseImplementation(string keyValue)
    {
        var id = int.Parse(keyValue);
        return new AdditiveProductKey(id);
    }

    protected override string GetParseFailMessageImplementation()
    {
        return UserMessages.InvalidAdditiveProductKey;
    }

    public override string ToString()
    {
        return AdditiveProductKey_Id.ToString(CultureInfo.InvariantCulture);
    }

    #region Implementation of IAdditiveProductKey

    public int AdditiveProductKey_Id { get { return _id; }}

    #endregion
}

Here is the type info on the variable ‘key’ in the ToString_produces_correct_string_value test.

key.GetType()
{Name = "AdditiveProductKey" FullName = "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey"}
[System.RuntimeType]: {Name = "AdditiveProductKey" FullName = "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey"}
base {System.Reflection.MemberInfo}: {Name = "AdditiveProductKey" FullName = "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey"}
Assembly: {RioValleyChili.Data.Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null}
AssemblyQualifiedName: "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey, RioValleyChili.Data.Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
Attributes: Public | BeforeFieldInit
BaseType: {Name = "KeyBaseClass`1" FullName = "RioValleyChili.Business.Core.Keys.KeyBaseClass`1[[RioValleyChili.Data.Utilities.Keys.AdditiveProductKey, RioValleyChili.Data.Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"}
ContainsGenericParameters: false
DeclaringMethod: 'key.GetType().DeclaringMethod' threw an exception of type 'System.InvalidOperationException'
DeclaringType: null
FullName: "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey"
GenericParameterAttributes: 'key.GetType().GenericParameterAttributes' threw an exception of type 'System.InvalidOperationException'
GenericParameterPosition: 'key.GetType().GenericParameterPosition' threw an exception of type 'System.InvalidOperationException'
GenericTypeArguments: {System.Type[0]}
GUID: {81e8adb0-f899-358b-aa20-9bec8f96666d}
HasElementType: false
IsAbstract: false
IsAnsiClass: true
IsArray: false
IsAutoClass: false
IsAutoLayout: true
IsByRef: false
IsClass: true
IsCOMObject: false
IsConstructedGenericType: false
IsContextful: false
IsEnum: false
IsExplicitLayout: false
IsGenericParameter: false
IsGenericType: false
IsGenericTypeDefinition: false
IsImport: false
IsInterface: false
IsLayoutSequential: false
IsMarshalByRef: false
IsNested: false
IsNestedAssembly: false
IsNestedFamANDAssem: false
IsNestedFamily: false
IsNestedFamORAssem: false
IsNestedPrivate: false
IsNestedPublic: false
IsNotPublic: false
IsPointer: false
IsPrimitive: false
IsPublic: true
IsSealed: false
IsSecurityCritical: true
IsSecuritySafeCritical: false
IsSecurityTransparent: false
IsSerializable: false
IsSpecialName: false
IsUnicodeClass: false
IsValueType: false
IsVisible: true
MemberType: TypeInfo
Module: {RioValleyChili.Data.Utilities.dll}
Namespace: "RioValleyChili.Data.Utilities.Keys"
ReflectedType: null
StructLayoutAttribute: {System.Runtime.InteropServices.StructLayoutAttribute}
TypeHandle: {System.RuntimeTypeHandle}
TypeInitializer: null
UnderlyingSystemType: {Name = "AdditiveProductKey" FullName = "RioValleyChili.Data.Utilities.Keys.AdditiveProductKey"}

And here are the results:

key.ToString() 
"RioValleyChili.Data.Utilities.Keys.AdditiveProductKey" //what i'm getting

((AdditiveProductKey)key).ToString()
"123" // what I'm expecting
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T22:56:24+00:00Added an answer on June 11, 2026 at 10:56 pm

    ToString is a virtual/polymorphic function. As long as you have used override it should already just work. I suspect you didn’t use override.

    public override string ToString() {
       // ...
    }
    

    Edit:

    This need not be in the class you think: maybe KeyBaseClass<T> has a virtual ToString() rather than a override ToString(). This is an unrelated ToString – so your override would act on this, not object.ToString().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am adding some code to an existing FreeBSD device driver and I am
I want to enable code coverage for some unit test in my solution. After
I've got an existing C# 4 project which I've checked the test coverage for
I'm looking into adding some unit tests for some classes in my data access
I'm adding some ASP.NET MVC pages to an existing ASP.NET Web Forms project. I've
I'm writing an assignment which involves adding some functionality to PostgreSQL on a Solaris
When I'm adding some constraints, e.g: create table Test( IDTest int primary key, Credit
This appeared as some test question. If you consider this function which uses a
We're trying to test out WSO2 API manager and having troubles adding some APIs.
I'm working on adding some analytics code into our e-commerce website. What I'm doing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.