MudassarRasool / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

Resharper does not recognize the extended test attribute #870

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Create a new project in Visual Studio with R# installed
2.Use the following code in file using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using MbUnit.Framework;

namespace TestingGallio
{
    public class NewTestAttribute : TestAttribute
    {

    }

    public class Class1
    {
        [NewTest] // Does Not Work
        // [Test] // Works
        public void TestMethod()
        {

        }
    }
}
3.R# does not display the green got next to the test. However If I use the test 
attribute directly, it gives me the green dot

What is the expected output? What do you see instead?
R# should recognize the TestMethod as a test but does not. I do not see the 
little green/yellow dot 

What version of the product are you using? On what operating system?
Mbunit/ Gallio : 3.3.0.0
Windows 7 64 Bit
R#6
VS 2010

Please provide any additional information below.

Original issue reported on code.google.com by killnare...@gmail.com on 13 Dec 2011 at 2:54