0
votes
0answers
7 views
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, …
0
votes
1answer
26 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 co …
7
votes
8answers
576 views
Java assertions underused
Hi,
I'm wondering why the "assert" keyword is so underused in Java? I've almost never seen them used, but I think they're a great idea. I certainly much prefer the brevity of:
as …
1
vote
2answers
629 views
SAML Assertion WriteXML issue in C#
I've created an instance of a SamlAssertion, and added the the authorization statement and attribute statments to it, and now I want to print out the XML so I can do an HTTP post, …
9
votes
8answers
634 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 …
4
votes
2answers
140 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
30 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
85 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 …
0
votes
1answer
29 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 …
1
vote
3answers
70 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 …
4
votes
5answers
182 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
114 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 …
3
votes
2answers
175 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 …
5
votes
5answers
143 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 …
1
vote
2answers
35 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 tes …
