Tagged Questions

4
votes
3answers
54 views

JUnit: Enable assertions in class under test

I've been bit a few times by Java assert statements that didn't fail in the JUnit test suite because assertions weren't enabled in JUnit's JVM instance. To be clear, these are "black box" assertions …
0
votes
2answers
19 views

Can I write custom assertions in CxxTest?

I'm just starting to use CxxTest and would like to test whether a std::vector has been sorted correctly. Here's my test so far: void testSort() { std::sort(vec.begin(), vec.end()); // This could be …
0
votes
1answer
29 views
+100

ASSERTION in a message box with custom message to users?

Is it good to define a new macro that craters my need of showing failed assertion to user and with just enough information for developers to debug the issue. Message for user, what the user …
0
votes
1answer
27 views

proper use of assert.h in debugging

Hi! c++ with visual studio 2008 if i use assert() from assert.h and compile in debug mode, the application crashes if the assert condition doesn't hold and it prints me in the console on what line …
0
votes
1answer
32 views

Test ajax in rails

Hi In my action i have render :update do |page| page["an_id"].value = "string" end My question is how can i test that the textfields value is changed propely? Tried assert_select_rjs, but …
4
votes
2answers
154 views

NUnit: Assert.Throws

How do I use Assert.Throws to assert type of the exception and the actual message workding. Something like this: Assert.Throws<Exception>( ()=>user.MakeUserActive()).WithMessage("Actual …
1
vote
4answers
100 views

rspec mocks: verify expectations in it “should” methods?

I'm trying to use rspec's mocking to setup expectations that I can verify in the it "should" methods... but I don't know how to do this... when i call the .should_receive methods on the mock, it …
0
votes
1answer
34 views

Assert difference of number of children in relationship in Ruby on Rails

My controller is able to create a child book_loan. I am trying to test this behavior in a functional test but am having a hard time using the assert_difference method. I've tried a number of ways of …
4
votes
5answers
187 views

Debug.Assert vs Exception Throwing

I've read plenty of articles (and a couple of other similar questions that were posted on StackOverflow) about how and when to you assertions, and I understood them well. But still, I don't understand …
1
vote
3answers
115 views

Convenient strategies for assertion checks.

Some asserts are costly, some are better turned off at production code. At least it is not clear that assertions should be always enabled. In my application I would like to be able to turn on/off …
1
vote
3answers
77 views

What’s the “upgrade path” from Assertion.AssertEquals ?

I've inherited some unit test code which is giving me a deprecation warning because it uses "Assertion.AssertEquals": warning CS0618: 'NUnit.Framework.Assertion' is obsolete: 'Use Assert class …
3
votes
2answers
176 views

Is GNU’s nana library dead? Is there a successor in use?

Looking at http://savannah.gnu.org/projects/nana/ it seems that the last work was done on Nana four years ago, and the official gnu.org homepage for nana is a placeholder. Given how inactive projects …
6
votes
5answers
149 views

Unit testing: Is it a good practice to have assertions in setup methods?

In unit testing, the setup method is used to create the objects needed for testing. In those setup methods, I like using assertions: I know what values I want to see in those objects, and I like to …
1
vote
2answers
36 views

Best way for testing compiled code to return expected output/errors

How do you test if compiled code returns the expected output or fails as expected? I have worked out a working example below, but it is not easily extendable. Every additional test would require …
0
votes
1answer
35 views

RegexKitLite assertion failure occurring intermittently.

I'm using the wonderful RegexKitLite framework built upon the ICU library that ships with Mac OS X and iPhone OS. It has been smooth sailing so far, with the exception of this error that appears …

1 2 3 4 next
15 30 50 per page