vote up 0 vote down star

WHy is it not possible to inheritance tests from other assemblies to run:

namespace TestProject.Base
{
    [TestClass]   
    public abstract class TestBaseClass
    {
        [TestMethod]
        public void BaseTest()
        {
            Assert.IsTrue(false);
        }
    }
}

Test Runner

namespace TestProject.UnitTest
{   
    [TestClass]
    public class UnitTest : TestBaseClass
    {
    }
}

It is ONLY possible to do run the test when the classes are in the SAME assembly WTF!

Is it possible to have test inheritance like above with NUnit and be runnable?

flag

53% accept rate
2  
What are you seeing that is leading you to this conclusion? An error? No intellisense on the base members? – ajmastrean Jun 11 at 15:50
Tests dont run! Tests will only run if i declare both classes in the same assembly. – Th3Fix3r Jun 11 at 16:01
"Tests dont run!" Is not an answer to his question. – dss539 Jun 11 at 16:28
Ok. The test methods are not discovered by the editor and therefore do not run. THe methods can be discovered once i put BOTH classes in the same assembly – Th3Fix3r Jun 12 at 1:39
So you are building the class "UnitTest" into a separate DLL and referencing the DLL that contains "UnitTest"? Is the DLL that contains "BaseTest" in the same directory as the "UnitTest" DLL? – dss539 Jun 15 at 14:15

1 Answer

vote up 1 vote down

You must reference the assembly containing the class you wish to inherit from.

This has nothing to do with the fact that you're trying to run a test. It's because of the way code is linked.

link|flag
Assemblies are refernced. Otherwise you will get an compile error. – Th3Fix3r Jun 12 at 1:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.