1
vote
2answers
23 views
Trace.Assert not breaking, neither showing the message box
I have a WPF application in which I'm moving data around on a Canvas.
The problem started when I tried moving the data with the mouse like a freak.
Here's the sequence of the acti …
0
votes
8answers
68 views
Assert that two java beans are equivalent
This question is close, but still not what I want. I'd like to assert in a generic way that two bean objects are equivalent. In case they are not, I'd like a detailed error message …
4
votes
3answers
87 views
Continue to debug after failed assertion on Linux? [C/C++]
When an assertion fails with Visual C++ on Windows, the debugger stops, displays the message, and then lets you continue (or, if no debugging session is running, offers to launch v …
7
votes
6answers
182 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. …
0
votes
4answers
153 views
C Compile-Time assert with constant array
I have a very big constant array that is initialized at compile time.
typedef enum {
VALUE_A, VALUE_B,...,VALUE_GGF
} VALUES;
const int arr[VALUE_GGF+1] = { VALUE_A, VALUE_B, ... …
3
votes
4answers
175 views
What does static_assert do, and what would you use it for?
Could you give an example where static_assert(...) 'C++0x' would solve the problem in hand elegantly?
I am familiar with run-time assert(...). When should I prefer static_assert(. …
0
votes
3answers
73 views
Freeing memory allocated in a different dll
I have an exe using a dll which is using another dll. This situation has arisen:
In dll1:
class abc
{
static bool FindSubFolders(const std::string & sFolderToCheck,
…
5
votes
6answers
295 views
what is the assert function
hi
i ve been studying on openCV tutorials and came across with the "assert" function
what does it do
thanks
3
votes
3answers
71 views
Checking arguments in numerical python code
I find myself writing the same argument checking code all the time for number-crunching:
def myfun(a, b):
if a < 0:
raise ValueError('a cannot be < 0 (was a=%s)' …
2
votes
3answers
97 views
why does junit4 not have Assert.assertArrayEquals() for double[]s?
There appear to be Assert.assertArrayEquals() methods in Junit4 for all primitives other than double, e.g.
Assert.assertArrayEquals(int[] expected, int[] actual)
and
Assert.ass …
2
votes
7answers
179 views
Making Python’s `assert` throw an exception that I choose
Can I make assert throw an exception that I choose instead of AssertionError?
UPDATE:
I'll explain my motivation: Up to now, I've had assertion-style tests that raised my own exc …
0
votes
1answer
40 views
ASSERT fails on CDC SelectObject() call - What can I try?
I'm working on a multi-threaded win32 MFC application. We are rendering a map and displaying it in a pane in the user interface along with custom-rendered objects on top. It's sl …
0
votes
2answers
61 views
force asp.net assert to throw an exception?
My asserts aren't generating message boxes, sometimes they send a message to debug output and end the thread without giving me a more aggressive notification. How can I force all …
0
votes
5answers
175 views
Folding away assertions in C++ class?
So, in a non-class type of situation, I can do something like this:
int val_to_check = 0;
int some_func(int param) {
assert(val_to_check == 0);
return param*param+param;
}
i …
4
votes
6answers
345 views
Breaking into the debugger on iPhone
Hi everyone,
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 purp …
