4
votes
3answers
53 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
1answer
26 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
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
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 …
4
votes
2answers
151 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
95 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 …
4
votes
5answers
186 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 …
0
votes
1answer
31 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 …
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
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 …
5
votes
16answers
466 views
Do you use assertions?
This is not really a "question" so I'm making it CW.
The
assert
Keyword is great!
It should make, feel your self more confident with the code you wrote, but, until today when I was creating a …
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 …
18
votes
18answers
1k views
When should I use Debug.Assert()?
I've been a professional software engineer for about a year now, having graduated with a CS degree. I've known about assertions for a while in C++ and C, but had no idea they existed in C# and .NET at …
6
votes
14answers
572 views
Why should I use asserts?
I never got the idea of asserts -- why should you ever use them?
I mean, let's say I were a formula driver and all the asserts were things like security belt, helmet, etc.
The tests (in debug) were …
