2
votes
2answers
29 views
How can I unit test views and authorization attributes of my asp.net mvc application in nUnit?
I'm at a point where I'd like to start writing unit tests for my MVC application. I've already figured out how to unit test the controller and I can unit test my underlying busine …
0
votes
2answers
27 views
Javascript Unit Testing Frameworks?
Can anybody recommend a Javascript unit testing framework. I've found JsUnit (http://www.jsunit.net/) and will start evaluating it. I just thought it would be good to get some inpu …
1
vote
6answers
85 views
Unit Testing a class with an internal constructor
I have a class called "Session" which exposes several public methods. I'd like to Unit Test these, however in production I need to control instantiation of "Session" objects, so de …
0
votes
3answers
20 views
Feeding multiple pairs of files into a test method
I have a test method that tests the ToString() method of a class against known good outputs.
/// <summary>
///A test for ToString
///</summary>
[TestMe …
0
votes
1answer
22 views
Unit test a controller with custom model binder
In my application I have a custom model binder that I set to the DefaultBinder in the global.asax:
ModelBinders.Binders.DefaultBinder = new XLDataAnnotationsModelBinder();
When …
1
vote
1answer
34 views
Rhino Mocks constraints and Dictionary parameters
How would you check the parameters on a function that accepts a Dictionary?
IDictionary<string, string> someDictionary = new Dictionary<string, string> {
{"Key1", "V …
1
vote
6answers
69 views
Automated Testing Approach
Hi,
We write a lot of integration tests that work quite well for us, we did attempt to introduce unit testing but found it more difficult to introduce as it took longer and the be …
0
votes
2answers
41 views
Conditionally ignoring tests in JUnit 4
OK, so the @Ignore annotation is good for marking that a test case shouldn't be run.
However, sometimes I want to ignore a test based on runtime information. An example might be …
0
votes
1answer
27 views
Why does instantiating a UIFont in an iphone unit test cause a crash?
I'm trying to unit test some iphone code that instantiates fonts. I've narrowed it down to the following crashing unit test:
#import "test.h"
#import <UIKit/UIKit.h>
@imp …
2
votes
3answers
48 views
Auto run unit test cases in Python
We have a python based web application along with its unit test cases. Our need is to automate the process of running unit test cases. They should run either after every checking O …
2
votes
6answers
116 views
How do I get started with Unit Testing? Total n00b question, thoughts?
So I'm starting to write a class library of useful methods I've written and picked up over the years, I'll start with two examples of code, then ask my specific questions:
I'd als …
4
votes
8answers
143 views
Should every test method have at least one assert?
When I'm testing a void method there is nothing to assert.For example a CreateSomething method. I know I could call in the test method an other method like FindSomething,but anyway …
0
votes
1answer
38 views
How to write a stub for a classmethod in Python
I have a method which calls for a classmethod of another class
def get_interface_params_by_mac(self, host, mac_unified):
lines = RemoteCommand.remote_command(host, cls.IFC …
0
votes
0answers
16 views
How to mock abstract class with static members in Grails?
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined. The problem is that MockFor and StubFor don’t give you an option for adding static …
5
votes
2answers
93 views
Evidence that unit tests are good or bad [closed]
Possible Duplicate:
Is there hard evidence of the ROI of unit testing?
I read a lot about unit tests pros and cons and it always degenerates into some type of flame war th …
