0
votes
1answer
27 views

Get name of running test in Xunit

Using Xunit, how can I get the name of the currently running test? public class TestWithCommonSetupAndTearDown : IDisposable { public TestWithCommonSetupAndTearDown () { var ...
0
votes
1answer
29 views

How to TDD with .Net Data Services and Service Operations

My current solution is to create a class that has my service/data business logic, test that with a local db (mdf) and then wrap that class with identical functions from the data service class. public ...
0
votes
1answer
71 views

unit testing complex model with nested validation

I'm using fluentvalidation to do model validation. I have a class with a several nested classes or collections of classes, each with their own IValidator. Initially I was doing something like this ...
1
vote
1answer
144 views

Can anybody point me in the right direction with a BDD ATDD and TDD kata?

So ive been given a Kata to work on over the weekend. And before starting it I really just wanted to gather some thoughts. Okay but yes you already know this is a test but ok, IM NOT LOOKING FOR THE ...
0
votes
1answer
233 views

TFS System.IO.DirectoryNotFoundException: Could not find a part of the path [closed]

On TFS build machine, my DDLs get deployed to the following folder: \\MYMACHINE\Builds\XYZ\XYZ_20130117.1 The files that I need to run tests successfully get deployed to the following folder: ...
6
votes
2answers
183 views

Mock Networkstream.Read

I've been trying to mock a network stream for some unit tests. So far, using Moq the best I've come up with is to use a wrapper for the stream and then mock my interface. public interface ...
1
vote
2answers
281 views

How to write unit test for asynchronous (socket) code that includes ManualResetEvent.WaitOne()?

I am playing around with a socket server and try to work according to the Test Driven Development pattern. There's a working test for the socket creation method, but my test hangs due to the fact ...
1
vote
1answer
79 views

How should I register this type that has parameterized constructor, in Unity?

I am trying to register a type that has a constructor method like: public Foo (int myNumber, IBar bar) {...} I produce instance of IBar via Unity container. How should I regsiter and Resolve the ...
1
vote
2answers
157 views

Testing all possible permutation of user interaction using SpecFlow or any other framework

My set up is following: WPF client writting using MVVM pattern A set of unit tests A set of SpecFlow scenarious When creating SpecFlow scenarios, I firstly draw a state machine diagram to see all ...
0
votes
2answers
76 views

TDD how can I build this test? Not sure what to verify it against

I am using nunit, moq and trying to do TDD. I have query that returns some user accounts. I have another query that gets back a collection of conditions. I am to go through each account and check ...
17
votes
7answers
651 views

Is it good practise to do unit test coverage for even plain classes

Here is an example of an class with no behaviour at all. So the question is should I be doing unit test coverage for it, as I see it as unnecessary for it does have any behaviour in it. public class ...
0
votes
4answers
280 views

NUnit tests being ignored

I have the following test fixture class and for reasons beyond me NUnit decides to run all of the test classes around this one but not this one `namespace MyProject.Test { #region using ...
0
votes
1answer
113 views

BDD in .NET - A Trivial Challenge With Exceptions

EDIT: Updated 21/09/12 for my own sanity... I can't believe this was ever a question (yay learning). The console element threw me off the scent a little with this one. Just asserting (expecting) the ...
4
votes
2answers
228 views

Can I test the construction of a LINQ query without actually executing it

I have heard that when testing EF, you need to use integration testing against a live DB because of the differences between the LINQ to Objects and LINQ to Entities providers. Why can't we unit test ...
3
votes
3answers
2k views

Get Stored Procedure from Data Context : Linq to SQl

I have a stored procedure named ParseXML in SQL Server. I have a repository pattern using LINQ to SQL. I need to call the stored procedure from within the repository layer. Unlike GetTable method, we ...
1
vote
3answers
173 views

MOQ - Verify an increment property call

The below code snippet best explains what I am trying to achieve: [Test] public void ReplayGoalTeamATest() { var stateMachineMock = new Mock<IIceHockeyOddsStateMachine>(); new ...
0
votes
0answers
136 views

Is there a tool that generates mock classes and associated data from execution time objects?

I'm working on a brownfield app. There are no unit tests. Most of the classes are mutable and have their properties set after construction. I need to mock the data for each of said classes. At ...
3
votes
4answers
165 views

How to find places in code that must be covered with unit tests

I know it's not so good to write tests after you actually wrote code. I'm unit-testing newbie and feel that unit-testing may deliver many good advantages so I obsessed with an idea to cover as much as ...
4
votes
4answers
781 views

.NET unit testing projects organisation

What would you say is the best way to manage the unit tests in a large .net application? Is it better to add a test project for each separate project in the solution or one large tests project for all ...
1
vote
1answer
498 views

NUnit test fixture hierarchies

I'm trying to create some kind of implementation-agnostic fixture. Say I have the following interface. public interface ISearchAlgorithm { // methods } And I know exactly how it should behave, ...
2
votes
2answers
85 views

assistance with classifying tests

I have a .net c# library that I have created that I am currently creating some unit tests for. I am at present writing unit tests for a cache provider class that I have created. Being new to writing ...
3
votes
6answers
130 views

Is better to detect for exceptions and throw them or just let runtime throw them?

Lets say there is setup like this: public class MyClass { public void DoSomething(string Data) { //if (String.IsNullOrWhiteSpace(Data)) //throw new NullReferenceException(); ...
4
votes
1answer
317 views

Two dimensional object array return type - NSubstitute

I get a cast exception System.InvalidCastException : Unable to cast object of type 'System.Object[]' to type 'System.Object[,]'. at Castle.Proxies.ITestProxy.Get2DArray() at ...
0
votes
4answers
283 views

Using Dependency Injection at runtime after class instantiation

I think this may be impossible without a complete architecture change but I have classes(plugins) that expose configurable options for the user at runtime. The program starts, the user can select to ...
1
vote
2answers
133 views

Understanding TDD and Interface Properties

I am trying to understand TDD more and all the examples I have seen regarding DI have been classes/interfaces that only have methods on them eg. public interface IUserRepository { User GetByID(int ...
0
votes
3answers
62 views

Assigning properties on class dependencies

Lets say I have a class that takes a IFileLogger in as a constructor argument. public MyClass : IClass { private IFileLogger Logger; public MyClass(IFileLogger Logger) { ...
2
votes
1answer
59 views

Is this still a verification test on a Mock?

As the title suggests really. WriteData will be called for each split CSV item in DataIn. I want to determine that WriteData has been called successfully. By adding a callback and doing an assert ...
0
votes
4answers
98 views

Added functionality broke my tests - very simple logic too

I have code similar to this: public List<string> Expected = new List<string>(); public int SpecifiedID; public DataIn(int ID, string Value) { Expected.Add(Value); //if (ID == ...
3
votes
2answers
83 views

Testing methods called from another method

I have a class with a method called DataIn(int InputID, string CSVValue), this is the main entry point to it. This method based on the InputID stores the CSV Value parameter into relevant ...
4
votes
3answers
173 views

Logic in Unit Tests

I have a unit test like so: [Test] public void DataIn_NoOfRowsReached_CreatesSequentialData() { //Assert MyLogic logic = SetupLogic(); logic.NoOfRows = 3; ...
0
votes
3answers
90 views

TDD & Design Advice

I have a method which calls an Action<string> public Action<string> DisplayError; public void MyMethod() { DisplayError("ERROR"); } In this method I want to call DisplayError however ...
1
vote
2answers
846 views

Best Virtual Machine product for build server and test environment

I am investigating what Virtual Machine software would be best for running a build server and test environment. I've been reading a book on Test Driven Development. The first step is to create a ...
2
votes
2answers
176 views

How can I automaticly compile only projects that have changed when I build my solution in VS2010?

I am doing TDD development on a large solution in my company, we use visual studio 2010, I have the problem of long compile time, because it compiles the whole solution each time I do a small change ...
1
vote
5answers
228 views

What basic architecture can I use for a single layer Windows Forms app?

I have an extremely basic Windows Forms app for data capture and reporting on microloans. I have done a pretty good entity model design using EF, but only some initial prototyping with data access via ...
3
votes
5answers
260 views

Verifying event handler code executed

I have code very similar to this but cannot work out how I test whether an event handler occured. public class MyClass : MyAbstractClass { IFileSystem FileSystem; public MyClass(IFileSystem ...
1
vote
2answers
116 views

Property injection and setting properties on the injected type

If one uses property injection how do you set properties on that type? For example public class MyClass { public ITimer MyTimer {get;set;} } We can use DI to resolve ITimer but how/where do we ...
1
vote
1answer
80 views

Unit test if unmanaged resources are cleaned up

I'm using TDD and creating unit tests for System.IO.Stream objects that use unmanaged resources. My project consists of many such streams and I want to test if the implementations actually clean up ...
2
votes
1answer
455 views

Unit Testing in CSLA? How? What?

Does anyone have an example of unit testing in CSLA. I find it difficult to implement TDD with this framework and was wondering if there is any simple ways of doing this. Is there any other Mock ...
3
votes
2answers
573 views

IOC in Winforms plugin architecture

I am working with an architecture that has a main program. When this starts it looks in the executing path via reflection for DLL's that have inherited off a base class. These are the plugins. When a ...
2
votes
4answers
198 views

FluentAssertion fail to compare enumerable of strings

This code works fine [Test] public void boo() { var collection = new[] { 1, 2, 3 }; collection.Should().Equal(1, 2, 3); } But, this fails [Test] public void ...
0
votes
1answer
144 views

Refactoring Legacy Code for Unit Testing - Please Critique [closed]

I'm trying to refactor some code for Unit Testing and was hoping you could critique it. This is the original method. public class MyNonRefactoredClass { public List<MyClass> DoSomething() ...
2
votes
2answers
1k views

Setting up moq and verifying that a method was called

Using Microsoft Test Framework and Moq I'm trying to verify if a log4net method was called. [TestMethod()] public void Log_Info_When_Stuff_Is_Done() { SampleClass sampleObject = ...
0
votes
2answers
138 views

Can someone help convert legacy code into TDD code? Beginner pulling his hair out

I am trying to re-write a method using TDD. Here is the original method without the database logic and below it is my attempt to re-write it. Its not complete as I just hit a wall and do not ...
0
votes
2answers
189 views

When to use Mock or Fake or Overrides?

Lets say I have the below method called DoSomething. When writing unit tests how do I know whether to use a Fake, Mock or Override approach and why is one better than the other? public ...
4
votes
4answers
831 views

Unit Testing return value of method called from inside another method

I have a method similar to this: public List<MyClass> DoSomething(string Name, string Address, string Email, ref string ErrorMessage) { //Check for empty string parameters etc now go and get ...
-1
votes
2answers
92 views

Red, Green, Refactor… Beautify? [closed]

I am building a MVC web app and trying to practice TDD and wondered how you approached beautifying an application? is that rolled into the "Refactor" phase or is Red, Green, Refactor purely for ...
2
votes
4answers
139 views

Hole in knowledge in regard with TDD

I made a list (a so called "test list" in Test-Driven Development by Example) from which I will pick a test to implement. So I start up Visual Studio, create a new solution, add a project for the ...
2
votes
2answers
59 views

Can I set a user friendly message to be shown when AssertWasCalled fails, in Rhino Mocks?

Can I write the following assert on the mock object, in a way that it shows "UnBookFlight was not called with proper parameters or not even called" in case the assert fails? mockBookingService ...
0
votes
5answers
181 views

If I am able to call AssertWasCalled method on a Stub, what is the difference between mock and stub?

As far as I know, Stub is just a replacement for a dependency. Stub is not used for verificiation and it cannot fail a test -from the book The Art Of Unit Testing. But it seems since Rhino Mocks 3.5 ...
1
vote
2answers
89 views

What does 'automated piece of code' mean in the definiton of a Unit Test?

In the book 'The Art Of Unit Testing' by Roy Eshorove, the unit test is defined as: automated piece of code invokes the method or class then checks some assumptions about the logical ...

1 2 3 4