testdriven.net Questions
10
Solved
I have a xUnit.net Test as follows:
static class MyTestClass
{
[Fact]
static void MyTestMethod()
{
}
}
The xUnit plugin for VS 2012 says:
No tests found to run.
TestDriven.net runs it ...
Lochia asked 25/4, 2013 at 12:23
5
Solved
I'm writing unit tests with NUnit and the TestDriven.NET plugin. I'd like to provide parameters to a test method like this :
[TestFixture]
public class MyTests
{
[Test]
public void TestLogin(str...
Rodolforodolph asked 5/9, 2009 at 2:52
4
Solved
I've created some MbUnit Test Fixtures that have SetUp methods marked with the SetUp attribute. These methods run before the tests just fine using the MbUnit GUI, the console runner, and the ReShar...
Daria asked 6/8, 2008 at 21:6
4
Solved
Does TestDriven.NET work with VS Express?
EDIT:
Yeah, I just installed it and noticed that it wasn't working. It looks like a really cool program.
Ragouzis asked 11/2, 2009 at 6:21
3
Is there an easy way to run all tests in open test classes in Visual Studio. I find that this is what I most often need to do.
Mostly I use Resharpers or TestDriven.NET testrunners, and I cant fin...
Pyrostat asked 2/7, 2010 at 7:55
1
If I start my unit tests from TestDriven.NET under VS2008, they run pretty much immediately.
If I start my unit tests using nunit-console.exe, the NUnit console hangs for five minutes before actu...
Delftware asked 25/2, 2010 at 8:44
4
Solved
I searched about this in SO and dint find a post on this. Since TestDriven.net is ONLY free for personal use, is there any other open source visual studio add in available for running NUnit test ca...
Copal asked 16/7, 2010 at 13:8
2
Solved
Can someone name some sample open source projects (C#) that would help me to put TDD,DDD concepts in to practice. (Beginner to Intermediate level)
I have a good understanding of the concepts,...
Budweis asked 18/7, 2011 at 14:48
2
Solved
Note: I am using TestDriven.NET 3.0.2749 and NUnit 2.6.0.12051 for this project.
I have installed both TestDriven.NET and NUnit and am trying to get TestDriven.NET to run all tests in a test class...
Pelisse asked 2/7, 2012 at 15:55
7
Solved
I'm trying to use TestDriven.Net not only to test my code, but to call a function on my code whose purpose is to print out the internal state of the code to the Debug window.
Here's a very simplif...
Severson asked 6/10, 2008 at 9:13
1
Solved
I think I'm missing something here. I installed Tesdriven and then Gallio (third link from top - Gallio 3.5 x64 installer)
Then I installed the mbunit dlls from Nuget because I didn't want to incl...
Neuroma asked 1/10, 2012 at 10:47
2
Solved
Steps to Repro:
Make a C# project in VS 2010 Professional on Windows 7 Ultimate 32-bit edition.
Write some unit tests with the VS C# Unit Test wizard
Download and install the latest RTM or Beta v...
Orebro asked 9/11, 2011 at 19:31
2
I am experiencing a problem with running NUnit via the Test Driven .NET plugin with Visual Studio 2008. I have an addin that when I use the NUnit GUI, works just fine. However, the addin doesn't se...
Anisometropia asked 24/1, 2011 at 19:13
1
Solved
I am trying to setup a Visual Studio solution that facilitates:
BDD
Using SpecFlow http://www.specflow.org/
As described on TekPub here: http://tekpub.com/view/concepts/5
I would like:
To kee...
Heimer asked 5/5, 2011 at 0:30
2
Solved
I am using NUnit for unit testing (running with TD.NET).
When using Assert.DoesNotThrow, i get the exception, but without any stack trace, which makes it harder to identify root issue.
How can i ...
Durra asked 16/6, 2011 at 13:28
2
Solved
I want to run coverage from the command line, but can't seem to get NCover 1.5.8 to instrument the code. It must be possible as when I run coverage tests with TestDriven.net it works. the differenc...
Kish asked 7/2, 2011 at 12:46
2
I'm making my first steps in Test Driven Development with Visual Studio. I have some questions regarding how to implement generic classes with VS 2010.
First, let's say I want to implement my own ...
Sigmoid asked 16/5, 2010 at 17:33
4
Solved
Why doesnt TestDriven.Net work with my gallio/mbunit tests?
I've used TDD.Net with MbUnit v2 and not had any problems, but with the new gallio release on my new pc, it does nothing.
From the tdd ...
Couple asked 23/12, 2008 at 10:17
1
Solved
I just discovered that I was getting twice the number of tests run that I should've been getting. Discovered it when a test broke and I got two identical test failures. Same test, same everything. ...
Beverle asked 19/1, 2010 at 13:50
2
I've installed TestDriven.Net in Visual Studio 2008 and when I run a mbunit test from TD.Net I get this message:
It looks like you're trying to execute a Gallio/MbUnit unit test.
For Gallio v3.0.6...
Cristinecristiona asked 28/10, 2009 at 15:42
3
Solved
When I want to run 1 test, I always have to right-click the method declaration and click "Run Test". Is there a way to do this without using the mouse?
Respiration asked 13/10, 2009 at 15:22
2
Solved
What are the differences between using a VS integrated tool like Testdriven.net or using a GUI test runner like Icarus or NUnit GUI?
What do you prefer and why?
So far i've found that repor...
Kelcey asked 1/9, 2009 at 14:34
2
Solved
I've used NUnit for years and I wanted to try XUnit. So I installed XUnit and ran the executable that allowed you to run XUnit via TD.net.
I can't seem to run more than one test at a time. With N...
Synthiasyntonic asked 29/11, 2008 at 14:35
1
© 2022 - 2024 — McMap. All rights reserved.