Tagged Questions
The assertions tag has no wiki summary.
752
votes
16answers
97k views
Cycles in family tree software
I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that he has two children with his own ...
46
votes
19answers
8k 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 ...
26
votes
4answers
6k 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 ...
18
votes
6answers
1k views
Writing robust and “modern” Fortran code
In some scientific environments, you often cannot go without FORTRAN as most of the developers only know that idiom, and there is lot of legacy code and related experience.
And frankly, there are not ...
15
votes
8answers
2k views
Java assertions underused
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:
assert (param != null : ...
14
votes
16answers
965 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 ...
13
votes
5answers
1k 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 use assertions, and I understood them well. But still, I don't understand ...
13
votes
2answers
3k views
13
votes
8answers
1k 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 I see it is thus:
...
11
votes
12answers
2k views
Are assertions always bad?
I used to work for a company where some of the lead architect/developers had mandated on various projects that assertions were not to be used, and they would routinely be removed from code and ...
11
votes
6answers
4k views
Rhino Mocks: Asserting that a method is called exactly one time
I want to assert that a method is called exactly one time.
Update: I'm using RhinoMocks 3.5.
Here's what I thought would work:
[Test]
public void just_once()
{
var key = "id_of_something";
...
10
votes
3answers
226 views
Ajax-driven JavaScript runtime assertion framework
While working on a larger web application with an increasing amount of JavaScript code, we did a brainstorming session on how to improve code quality.
One of the first ideas was to introduce unit ...
10
votes
7answers
513 views
Is Belt and Braces programming good practice or just introducing needless complexity?
I was wondering whether using a Belt and Braces (Suspenders) approach to programming - and to data validation in particular - was good practice or not. This came about from the following example.
I ...
9
votes
1answer
698 views
Assert.ReferenceEquals() Passes where Object.ReferenceEquals() returns 'false' in Visual Studio Test
In attempting to create an initial, failing unit test in Visual Studio Professonal 2008's test capabilities, I can't seem to get Assert.ReferenceEquals() to correctly fail when an object instance is ...
8
votes
14answers
894 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 ...
8
votes
9answers
2k views
Avoiding unused variables warnings when using assert() in a Release build
Sometimes a local variable is used for the sole purpose of checking it in an assert(), like so -
int Result = Func();
assert( Result == 1 );
When compiling code in a Release build, assert()s are ...
7
votes
1answer
145 views
What is the difference between these two Unit Test Assertions?
Came across the following MS Unit Test:
[TestMethod]
public void PersonRepository_AddressCountForSinglePerson_IsNotEqualToZero()
{
// Arrange.
Person person;
// Act.
person = ...
7
votes
5answers
429 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 ...
6
votes
6answers
2k views
assert vs. JUnit Assertions
Today I saw a JUnit test case with a java assertion instead of the JUnit assertions - What are the best practices in this respect?
6
votes
4answers
536 views
Best practices for multiple asserts on same result in C#
What do you think is cleanest way of doing multiple asserts on a result? In the past I've put them all the same test but this is starting to feel a little dirty, I've just been playing with another ...
6
votes
4answers
2k 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 ...
5
votes
2answers
117 views
How to make Clojure respect `*assert*` variable?
I was to understanding that Clojure's *assert* variable could be used to turn off assertions, but nothing I do seems to works.
(defn foo [a]
{:pre [(pos? a)]}
(assert (even? a))
[a])
(binding ...
5
votes
1answer
131 views
Automated IllegalArgumentException message?
I always check the arguments of public functions and throw exceptions when something's wrong. (For private helpers I use assertions).
Like this:
if( a < 0 || a >= b )
throw new ...
5
votes
3answers
463 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 implement equals method ...
5
votes
5answers
167 views
How can I have variable assertions in Perl?
How can I check that a variable has a specific value in Perl? Is there a command to stop a script's execution to look up some of it's variables?
I wonder if I can use the Pythonic practice of ...
5
votes
9answers
4k views
C compiler asserts - how to implement?
I'd like to implement an "assert" that prevents compilation, rather than failing at runtime, in the error case.
I currently have one defined like this, which works great, but which increases the size ...
5
votes
6answers
477 views
Benefits of Assertive Programming
What is the point of putting asserts into our code ? What are the benefits of assertive programming ?
private void WriteMessage(string message)
{
Debug.Assert(message != null, "message is null");
...
5
votes
2answers
3k views
4
votes
4answers
267 views
C++ error-codes vs ASSERTS vs Exceptions choices choices :(
Code In question
I have heard (and regurgitated) the C++ exception mantra on both sides of the fence. It has been a while and I just want to centre myself once more, and this discussion is specific ...
4
votes
1answer
237 views
Why does ensuring work only on else?
In scala, when I use the ensuring predef, it works only on the else part of an if-else expression:
def evenIt(x:Int) = {
if(x % 2 == 0)
x+1 //return odd on purpose!
else{
x ...
4
votes
2answers
164 views
Is there a way how to continue after Debug.Assert() from the code?
My code operates on data which "should" be correct. However during development there are occasions when I obtain invalid data.
When that happens I would like to raise the debug assert and, if user ...
4
votes
2answers
183 views
Performance drag of Java assertions when disabled
Code can be compiled with assertions in it and can be activated/deactivated when needed.
But if I deploy an app with assertions in it and those are disabled what is the penalty involved in therm ...
4
votes
4answers
261 views
Java - Programming with assertions questions
I wonder if a lot of people program in java with assertions. I think this can be very useful on large projets without enough written contracts or outdated contracts. Particulary when you use ...
4
votes
4answers
345 views
Assertion in Java?
What is the assert keyword in Java?
Please tell me some real life examples to understand the key role of assertions?
4
votes
9answers
1k views
when to use assertion vs Exception
most of the time i will use exception to check for condition in my code, i wonder when is appropriate time to use assertion
for instance,
Group group=null;
try{
group = service().getGroup("abc");
...
4
votes
2answers
451 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 ...
3
votes
2answers
85 views
C Language: How is it possible for your program to continue running for a little bit after an “assert()” has failed?
I am currently (don't ask why :P) implementing my own versions of malloc() and free(), and have intentionally placed an assert(0) at the first line of free() for current debugging purposes.
A driver ...
3
votes
2answers
247 views
How to enable Java assertions in jetty-maven-plugin?
How to enable assertions in jetty-maven-plugin? By default they are disabled.
3
votes
4answers
410 views
What is the use of “assert” in Python?
i have been reading some sourcecodes and in several places I have seen the usage of assert. What does it mean exactly? what is it's usage?
3
votes
4answers
379 views
Cobertura coverage and the assert keyword
My line coverage for unit tests measured by Cobertura is suffering, because I have assert statements which are not covered in tests. Should I be testing assertions, and is there any way to get ...
3
votes
1answer
141 views
How to make assertions in R?
Is it recommendable to use RUnit's check* functions to make preconditions/ postcondition statements or do this come with some penality in performance or other?
3
votes
1answer
347 views
Perform Assert.AreMatch() to deep compare properties in two objects
I am writing tests against our Caching mechanism and I want to be sure that what goes into the cache is the same as what comes out, ie that all properties match. Here is a fictional example of how I ...
3
votes
2answers
262 views
use of assertions for type checking in php?
I do some checking of arguments in my classes in php using exception-throwing functions. I have functions that do a basic check ( ===, in_array etc ) and throw an exception on false. So I can do ...
3
votes
2answers
116 views
Which are Java's system classes?
When reading some documentation about assertions, I found:
java -ea -dsa
"Enables assertions in general, but
disables assertions in system
classes."
Which are the system classes?
3
votes
5answers
1k 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 ...
3
votes
4answers
824 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
305 views
ExpectedException in jUnit?
Is there an equivalent to NUnit's ExpectedException or Assert.Throws<> in jUnit?
3
votes
3answers
493 views
Implementing assertions in Progress 4GL
What is the best way of implementing assertions using Progress 4GL or WebSpeed?
3
votes
2answers
529 views
Why is there no assertError() function in FlexUnit?
It seems that most XUnit testing frameworks provide assertions for the times when you want to assert that a given operation will thrown an exception (or an Error in AS3 parlance.) Is there some ...
3
votes
4answers
699 views
How did you extend your Assert class
I love to Extend my Assert.AreEqual to many different classes, the known one is the CollectionAssert of course, but I can think of some more such as: ImageAssert, XmlAssert etc..
Did you Create your ...