Tagged Questions
An assertion is a statement, which aborts a program when it evaluates to false. Assert is typically used for debugging and situations which should never happen.
80
votes
22answers
34k views
How to generate a stacktrace when my gcc C++ app crashes
When my c++ app crashes I would like to generate a stacktrace.
I already asked this but I guess I needed to clarify my needs.
My app is being run by many different users and it also runs on Linux, ...
77
votes
19answers
4k views
Is assert evil?
The Go language creators write:
Go doesn't provide assertions. They are undeniably convenient, but our experience has been that programmers use them as a crutch to avoid thinking about proper ...
73
votes
6answers
14k views
Why doesn't JUnit provide assertNotEquals methods?
Does anybody know why JUnit 4 provides assertEquals(foo,bar) but not assertNotEqual(foo,bar) methods?
It provides assertNotSame (corresponding to assertSame) and assertFalse (corresponding to ...
50
votes
9answers
19k views
C#: How do I use Assert (Unit Testing) to verify that an exception has been thrown?
The title says it all - how do I use Assert (or other Test class?) do verify that an exception has been thrown?
Thanks :)
42
votes
7answers
14k views
Best practice for Python Assert
Is there a performance or code maintenance issue with using assert as part of the standard code instead of using it just for debugging purposes?
Is
assert x >= 0, 'x is less then zero'
and ...
35
votes
13answers
5k views
design by contract tests by assert or by exception?
When programming by contract a function or method first checks whether its preconditions are fulfilled, before starting to work on its responsibilities, right? The two most prominent ways to do these ...
32
votes
6answers
4k views
differences between 2 JUnit Assert classes
I've noticed that the JUnit framework contains 2 Assert classes (in different packages, obviously) and the methods on each appear to be very similar. Can anybody explain why this is?
The classes I'm ...
32
votes
13answers
3k views
When should assertions stay in production code?
There's a discussion going on over at comp.lang.c++.moderated about whether or not assertions, which in C++ only exist in debug builds by default, should be kept in production code or not.
Obviously, ...
28
votes
7answers
20k views
Python: check if an object is a list or tuple (but not string)
This is what I normally do in order to ascertain that the input is a list/tuple - but not a str. Because many times I stumbled upon bugs where a function passes a str object by mistake, and the target ...
27
votes
8answers
17k views
C# - What does the assert() method do? Is it still useful?
I am debugging with breakpoints and I realize the assert call? I thought it was only for unit tests. What does it do more than breakpoint? Since I can breakpoint, why should I use Assert?
19
votes
5answers
3k views
Can I use assert on Android devices?
I want to use the assert keyword in my android apps to destroy my app in some cases on the emulator, or my device during testing. Is this possible?
It seems that the emulator just ignores my ...
19
votes
9answers
3k views
Debug.Assert vs. Specific Thrown Exceptions
I've just started skimming 'Debugging MS .Net 2.0 Applications' by John Robbins, and have become confused by his evangelism for Debug.Assert(...).
He points out that well-implemented Asserts store ...
17
votes
3answers
475 views
Am I misunderstanding assert() usage?
I was taking a look at the assert() reference page and I got stuck while I read the given example:
/* assert example */
#include <stdio.h>
#include <assert.h>
int main ()
{
FILE * ...
17
votes
3answers
3k views
Why does Assert.AreEqual(T obj1, Tobj2) fail with identical byte arrays
I have two identical byte arrays in the following segment of code:
/// <summary>
///A test for Bytes
///</summary>
[TestMethod()]
public void BytesTest() {
...
15
votes
2answers
286 views
How to combine defensive programming techniques together?
The question I want to ask you is quite wide but in the same time it's very concrete. First, I have to say, that I mostly interested in answers which are applicable in the .net environment.
Well, I ...
15
votes
12answers
770 views
Is Java assert broken?
While poking around the questions, I recently discovered the assert keyword in Java. At first, I was excited. Something useful I didn't already know! A more efficient way for me to check the ...
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
7answers
2k views
Best practice for debug Asserts during Unit testing
Does heavy use of unit tests discourage the use of debug asserts? It seems like a debug assert firing in the code under test implies the unit test shouldn't exist or the debug assert shouldn't exist. ...
12
votes
4answers
459 views
How does C# compiler remove Debug.Assert's in release builds?
I was recently going through some code and considering whether I need to be careful with the expressions placed inside Debug.Assert statements, such as expensive operations or those with side effects. ...
12
votes
10answers
940 views
Why can't we use assertion for public methods?
Why can't we use assertion for public methods?
I have read somewhere
"An assert is inappropriate in public
methods because the method guarantees
that it will always enforce the
argument ...
11
votes
1answer
179 views
What is the meaning of an assumption in scala compared to an assertion?
Scala seems to define 3 kinds of assertions: assert, require and assume.
As far as I can understand, the difference (compared to a generic assertion) of require is that it is specifically meant for ...
11
votes
9answers
467 views
What is the role of asserts in C++ programs that have unit tests?
I've been adding unit tests to some legacy C++ code, and I've run into many scenarios where an assert inside a function will get tripped during a unit test run. A common idiom that I've run across is ...
11
votes
6answers
565 views
What is the use of Python's basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. From Python's man ...
10
votes
2answers
869 views
Custom C++ assert macro
I stumbled upon an informative article: http://cnicholson.net/2009/02/stupid-c-tricks-adventures-in-assert/
which pointed out a great number of problems that exist in my current suite of debugging ...
10
votes
8answers
212 views
If as assert fails, is there a bug?
I've always followed the logic: if assert fails, then there is a bug. Root cause could either be:
Assert itself is invalid (bug)
There is a programming error (bug)
(no other options)
I.E. Are ...
10
votes
4answers
453 views
When assert() fails, what is the program exit code?
When an assert() call fails, what is the exit code used, and where is it documented?
10
votes
4answers
3k views
Some (anti-)patterns on using assert (Java, and others)
Finally, I have a question to ask on Stack Overflow! :-)
The main target is for Java but I believe it is mostly language agnostic: if you don't have native assert, you can always simulate it.
I work ...
10
votes
10answers
5k views
Ways to ASSERT expressions at build time in C
I'm tidying up some older code that uses 'magic numbers' all over the place to set hardware registers, and I would like to use constants instead of these numbers to make the code somewhat more ...
9
votes
7answers
304 views
assert dilemma in unit testing class
I would like to use PHP's assert function in my unit testing framework. It has the advantage of being able to see the expression being evaluated (including comments) within the error message.
The ...
9
votes
4answers
2k views
Static assert in C
What's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
9
votes
4answers
659 views
Slow Scala assert
We've been profiling our code recently and we've come across a few annoying hotspots. They're in the form
assert(a == b, a + " is not equal to " + b)
Because some of these asserts can be in code ...
9
votes
3answers
719 views
Disable assertions in Python
How do I disable assertions in Python? That is - if it fails, I don't want it to throw an AssertionError, but to keep going.
9
votes
8answers
680 views
Is it bad practice to have more than Assert in a unit test?
Is it bad practice to have more than Assert in a unit test? Does it matter?
8
votes
5answers
3k views
Exception Vs Assertion
What is difference between java Exception handling and assert any condition?
its know that assert is of two type.but when should we use assert keyword?
8
votes
7answers
3k views
Breaking into the debugger on iPhone
For assert macros in my iPhone project, I'm looking for a way to programmatically break into the debugger. On Windows (MSVC++), I can use __debugbreak() for this purpose. Invoking this function will ...
8
votes
3answers
6k views
How does Assert.AreEqual determine equality between two generic IEnumerables?
I have a unit test that will test to see if a method that returns the correct IEnumerable. The method builds the IEnumerable using yield return. The class that it is an IEnumerable of is below:
...
8
votes
9answers
5k views
What is the best way of implementing assertion checking in C++?
By that I mean, what do I need to do to have useful assertions in my code?
MFC is quite easy, i just use ASSERT(something).
What's the non-MFC way?
Edit: Is it possible to stop assert breaking in ...
8
votes
6answers
3k views
Is it idiomatic Ruby to add an assert( ) method to Ruby's Kernel class?
I'm expanding my Ruby understanding by coding an equivalent of Kent Beck's xUnit in Ruby. Python (which Kent writes in) has an assert() method in the language which is used extensively. Ruby does ...
8
votes
14answers
640 views
Unit Testing without Assertions
Occasionally I come accross a unit test that doesn't Assert anything. The particular example I came across this morning was testing that a log file got written to when a condition was met. The ...
7
votes
2answers
99 views
How to check if method has an attribute
I have an example class
public class MyClass{
ActionResult Method1(){
....
}
[Authorize]
ActionResult Method2(){
....
}
[Authorize]
ActionResult ...
7
votes
3answers
997 views
Assert keyword in java
Do you use this keyword or throw some validation runtime exception? What benefits it gives to you or why you think it's not worth to use?
Thanks.
7
votes
5answers
282 views
Can I write a test without any assert in it?
I'd like to know if it is "ok" to write a test without any "assert" in it. So the test would fail only when an exception / error has occured.
Eg: like a test which has a simple select query, to ...
7
votes
5answers
741 views
What are acceptable use-cases for python's `assert` statement?
I often use python's assert statement to check user input and fail-fast if we're in a corrupt state. I'm aware that assert gets removed when python with the -o(optimized) flag. I personally don't run ...
7
votes
2answers
5k views
Why does assert simply terminate a program compiled for iPhone?
I'm debugging a heavily assert()'ed iPhone app (Xcode, Objective C++, device simulator). In some cases, the assert failure would just terminate the app, instead of breaking into the debugger as I'd ...
7
votes
6answers
929 views
Python assert — improved introspection of failure?
This is a rather useless assertion error; it does not tell the values of the expression involved (assume constants used are actually variable names):
$ python -c "assert 6-(3*2)"
[...]
...
7
votes
3answers
4k views
Pthread mutex assertion error
I'm encountering the following error at unpredictable times in a linux-based (arm) communications application:
pthread_mutex_lock.c:82: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' ...
7
votes
8answers
3k views
How to find the name of the current function at runtime? (C++)
After years of using the big ugly MFC ASSERT macro, I have finally decided to ditch it and create the ultimate ASSERT macro.
I am fine with getting the file and line number, and even the expression ...
7
votes
6answers
2k views
What's the difference between Assert.AreNotEqual and Assert.AreNotSame?
In C#, what's the difference between
Assert.AreNotEqual
and
Assert.AreNotSame
7
votes
3answers
8k views
Boolean Expressions in SQL Select list
I want to create a SQL Select to do a unit test in MS SQL Server 2005. The basic idea is this:
select 'Test Name', foo = 'Result'
from bar
where baz = (some criteria)
The idea being that, if the ...
7
votes
2answers
2k views
How to disable a programmatical breakpoint / assert?
I am using Visual Studio, developing a native application, I have a programmatical breakpoint (assert) in my code placed using __asm int 3 or __debugbreak. Sometimes when I hit it, I would like to ...