0
votes
0answers
18 views

MSTest Doesn't Pull Down Different Versions of Newtonsoft.JSON.dll

We use MSTest to run automated tests against our solution. Some of the projects in the solution are targeted for .NET 3.5 and are referencing Newtonsoft.JSON.dll version 4.0.8. Other projects are ...
0
votes
0answers
29 views

Running a Visual Studio macro from within a Unit Test

Is it possible to trigger a macro from within a unit test and get back it's returned value? The macro checks the integrity of certain solution files accessible from the DTE. Using the DTE from within ...
0
votes
1answer
29 views

Loading managed assemblies in a unit test project seems to slow Visual Studio 2010 down

I am loading multiple managed assemblies in a unit test. The assemblies are from within the solution and not third party, not that it matters. I notice that Visual Studio tends to increase memory ...
0
votes
1answer
22 views

Simple.Data and unit testing the business layer

I'm thinking of using the Simple.Data package (https://github.com/markrendle/Simple.Data) and thought of an interesting issue in terms of implementation. Simple.Data appears to be designed abstract ...
0
votes
1answer
42 views

How do I use OpenCover and ReportGenerator to view Unit Test Coverage Results?

I'm a noob to using both OpenCover and ReportGenerator and I'm struggling a bit in understanding how to get them working. I'm using VS.NET 2012 'Professional' which means I don't have access to the ...
0
votes
4answers
33 views

One Test-Class per method?

since today I have used the pattern to create one test class per class. For example the class "Foo" with the methods "DoSomething" and "DoNothing" had one test class called "FooTests". Now I have ...
2
votes
2answers
58 views

How to unit test a thread safe queue

I need a simple data structure with these requirements: it should behave like a queue, all the enqueue operations should be atomic. I have very limited experience with multithreading, but this is ...
0
votes
3answers
68 views

Verifying code against template patterns using reflection

I am working on a large project where a base class has thousands of classes derived from it (multiple developers are working on them). Each class is expected to override a set of methods. I first ...
1
vote
1answer
28 views

.net reference dependency when doing unit testing

a [TestClass] was written in C#. the namespace Microsoft.VisualStudio.TestTools.UnitTesting was used and a reference added Microsoft.VisualStudio.QualityTools.UnitTestFramework. subsequent, clean ...
0
votes
0answers
33 views

NUnit bug: The store generated pattern 'Computed' is not supported for properties that are not of type 'timestamp' or 'rowversion'

I created a test case in NUnit using VS2010. Testing simple case get experiment description by ID. It works fine when I work with normal code but gives the following error when I do unit test with ...
0
votes
0answers
17 views

Access resource file in a unit test method

I'm new to unit test. I need to get a value from a resource file during the unit test method. can any one guide me ? test classes write in visual studio 2010 .
0
votes
1answer
22 views

How to use multiple TestCaseSource attributes for an N-Unit Test

How do you use multiple TestCaseSource attributes to supply test data to a test in N-Unit 2.62? I'm currently doing the following: [Test, Combinatorial, TestCaseSource(typeof(FooFactory), "GetFoo"), ...
2
votes
2answers
64 views

Unit Testing Job Component C#

I'm trying to bring a legacy project under test. The code was written in such a way that it is generally testable, however some of the third party dependencies were not. I'm trying to wrap my head ...
0
votes
1answer
37 views

Differences between “Fluent Assertions” and “Should Assertion Library”

Can someone point the differences? The above is really my question, but if you can also share your experience with them and why you use one or the other.
1
vote
0answers
31 views

How to use custom logger for vs test?

I'm trying to use this custom Teamcity logger for VsTest per https://github.com/JakeGinnivan/VSTest.TeamCityLogger and http://msdn.microsoft.com/en-us/library/vstudio/jj155796.aspx After copying the ...
3
votes
1answer
36 views

Are tests in one class guaranteed to be not executed concurrently?

I am almost sure that they are. But I need to confirm that. class Foo { Bar fieled; [Test] public void bar() { field.DoSomething(); } [Test] public void baz() { ...
0
votes
1answer
53 views

Force Test Methods Implementation for all methods defined in an Database Interface

I am designing a solutions that is capable of changing DataSource from SQL to Oracle and SQLite. For this I am using Unity Framework to implement Lazy Binding. I have created an Interface and wrote ...
0
votes
0answers
74 views

Invalid Reference Verson When Visual Studio 2012 Starts

I recently added a unit test project to my existing .net website project. I wrote some unit tests and everything was working fine. We added in a third party testing suit to our development process, ...
0
votes
1answer
24 views

Stubs access to the protected variables

I need to unit test an this class: public abstract class GaBase { protected GoogleAnalyticsInfo GAInfo; protected abstract void PopulateGAInfo(); public string GetGoogleAnalyticsTag() ...
1
vote
1answer
43 views

wait for task complete in unit test

I have simple window with Button and TextBox named SimpleText /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public partial class MainWindow : Window ...
0
votes
0answers
21 views

Verifying a method was called without using IoC [duplicate]

Is it possible to test in .NET that a method was called. The requirements are 1) not using IoC, 2) not writing stubs, etc. manually (but testing framework can be used). E.g., public class MyClass { ...
0
votes
1answer
35 views

Unittest a statemachine

I'm new to C# und with their unittesting facilities. I wrote a state machine using the state pattern from GoF public class Program { private static void Main() { var c = new ...
6
votes
3answers
115 views

How to make class more testable?

I have this: class FooGenerator:IFooGenerator { private object _generated; public void Generate() { // Generating GenerateSmallPart(); ...
-1
votes
2answers
71 views

unit testing a function that returns an object (C# and visual studio)

here is a test function public some_object test_function(some_object obj) {} and if i use this statement to test this fucntion Assert.AreEqual(some_object, some_object.test_function(obj)); where ...
2
votes
1answer
30 views

Why are Interface contracts not applying outside of assembly?

I'm having a hard time trying to ensure that the (quite simple) contracts I wrote for an interface using Code Contracts are being applied. I have this code in a "shared" dll in one of our projects. ...
1
vote
1answer
46 views

integration testing for entity framework to ensure associations are correct

I guess this is more of an integration test, but does anyone have a link to a good tutorial on how to test to ensure the associations in your entity framework (4) model are working as expected? My ...
0
votes
0answers
43 views

What is the default value for test priority when PriorityAttribute is not set?

On TFS build server, I want to run tests that does not have PriorityAttribute set and tests that have priority set to 5. How can i write in "test case filter" that test "does not have priority set"? ...
4
votes
2answers
107 views

How to test whether a given functional code unit (C#) does NOT create/write any files to disk?

Imagine there's a mission-critical process that'll be used in a business which handles sensitive information (think of Credit Card, social security, patient records...etc). I would think this unit ...
0
votes
1answer
29 views

Timeout per unit-test class supported?

In NUnit I can add a [Timeout(5000)] attribute at the TestFixture (test class) level to specify an upper limit for each test method in that class. In xUnit, I know I can do something similar, but at ...
3
votes
3answers
85 views

What is the purpose of using two blank parentheses followed by the arrow in c#

What is the pupore of the two parentheses and arrow service.GetDeviceLOV = () => I have been trying to figure out its funtion. Down below is the whole method which was used for unit testing. ...
0
votes
1answer
106 views

Testing Factory Pattern

I have the small sample factory pattern implementation below, and was wondering if someone can help me write proper Moq unit test cases, for maximum code coverage: public class TestClass { ...
0
votes
1answer
63 views

Unit testing where a dependency has a static configuration method C#

I have a class that inherits a simple logging interface. One of the implementations of this interface uses log4net. Log4net has a static configuration method that is required to be called in you are ...
0
votes
0answers
108 views

Create unit test for Windows Form. .Net C#

There is form in which there are controls(textboxes,buttons). public partial class Form1 : Form { public MWLogin() { InitializeComponent(); } ...
1
vote
4answers
175 views

C# Unit testing class with a private constructor?

Ok so i just got an assignment where i have to perform unit testing on a class with a private constructor. Now how am i suppose to do unit testing without initializing a class when all the methods ...
0
votes
1answer
59 views

How to do the testing of viewmodels

Can somebody explain me how to do the nUnit testing for WPF viewmodel. I am new to this. I created a nUnit project however i am not sure how to run this. Is this through the nUnit exe or directly ...
1
vote
2answers
156 views

How can I mock a repository and unit of work pattern in Entity Framework?

I am new in Moq and Unit Testing. I want to test my Repository and Unit of Work pattern with entity framework 5. But I don't understand where and how can I start. My Repository Interface : public ...
1
vote
1answer
112 views

How to unit test the vb.net windows form based application?

I have been assigned SDET role recently. And as part of my job I need to do the code review ,code coverage and Unit Testing of the code. The application is developed in the VB.Net and it is a thick ...
3
votes
2answers
60 views

What tests should I write given the following code?

One of the things I struggle with the most when writing unit tests is what do I test and what do I not test. So given the following code, what tests should I write: public static class Enforce { ...
2
votes
2answers
99 views

Does verifying interactions in unit tests break encapsulation?

As i'm learning more about unit testing i've come to realize the behavior (interaction) vs. state verification approaches that are well known in this field. Verifying the state of some system after ...
0
votes
0answers
25 views

Redirect using HttpSimulator gives NullReferenceException

I've been using Phil Haack's HttpSimulator to get unit tests around some VB.NET legacy code. However, I've found that when the code calls HttpContext.Current.Response.Redirect a ...
2
votes
1answer
129 views

C# How to properly unit test a class that follows a decorator pattern?

I'm fairly new to unit testing(I'm actually studying it as we speak) My goal is of course to be able to test the method inside the class below. The class simply checks if the input is already in the ...
0
votes
1answer
128 views

unit testing in memory - sql server [duplicate]

I have an application that connect to an SQL Server database. The database is configured with a connectionString. I have some unit tests, everything works fine. But it connect to my real database (by ...
2
votes
4answers
131 views

How to unit test part of a Workflow?

I intend to test only one sequence of a workflow (it is not a separate CodeActivity). Is there a way I can invoke only the desired Sequence and pass in the required arguments? Thanks for your ...
0
votes
3answers
94 views

How to write integration test against database

Lets say I have a class like below. I'm not sure how I would write a unit/integration test against it. Does it need refactoring? Would it simply be to add an Add/Find method (which it would have in ...
0
votes
0answers
55 views

how to count finalizers were called during some observation period

I want to detect missed dispose calls during my automated unit testing. My initial suggestion is to follow the next pattern: //sample of disposable class, used in function under testing class Foo: ...
12
votes
2answers
160 views

Debugging unit tests that fail due to a StackOverflow exception

Whenever a unit test fails due to a StackOverflowException the unit test process immediately exits - the only way to find out what happened (that I am aware of) is to debug a crash dump of the unit ...
0
votes
0answers
17 views

Why does every test runner have separate executables for x64 and clr4

Using NUnit and xunit for a while, I find this fact quite interesting. Why is it so?
2
votes
1answer
68 views

Generate a stub or mocking a method in .NET

I am writing a unit test that performs logic as the following: SomeObject obj1 = new SomeObject(); obj1.SomeMethod(args); Inside SomeMethod: public void SomeMethod(*Some Args*){ ...
0
votes
2answers
85 views

.NET Rx Koans: Why does this test case fail?

While looking for material to learn Rx, I found this: Reactive Extensions (Rx) Koans. From the intro: Definition of ‘Koan’ Kōans is a zen word meaning the enlightenment or awakening of a person, ...
0
votes
1answer
52 views

How to simulate a call to HttpContext.Cache[“MyKey”] with Rhino Mocks?

Short version: How to get Rhino Mocks to simulate a call to HttpContext.Cache["MyKey"] and return expected data? Long version: I need to simulate a return value from the HttpContext.Cache with ...

1 2 3 4 5 25