4
votes
2answers
87 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()) …
0
votes
1answer
25 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 …
1
vote
4answers
67 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 o …
4
votes
5answers
170 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 …
1
vote
3answers
111 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 ab …
1
vote
3answers
62 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 …
5
votes
5answers
136 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
obje …
0
votes
1answer
23 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 …
5
votes
16answers
449 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 whe …
3
votes
2answers
169 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 ho …
6
votes
14answers
551 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 t …
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 exist …
9
votes
8answers
615 views
Debug.Assert vs Exceptions
Surprisingly I was only able to find one previous question on SO about this subject, and I'd just like to get the community "Vote of Confidence" (or not!) on my approach.
The way …
1
vote
3answers
66 views
.Net equivalent to Java’s AssertionError
In Java, I will occasionally throw an AssertionError directly, to assert that a particular line will not be reached. An example of this would be to assert that the default case in …
3
votes
3answers
130 views
Should one override equals method for asserting the object equality in a unit test?
Let's say we are testing the result of a method by asserting the equality of all the properties of the result object with properties of an expected result object. Should we implem …
