Tagged Questions
1
vote
2answers
190 views
Q_ASSERT has different behavior when my project is built in Visual Studio vs. Qt Creator
This seems to be a bug, because on Qt Creator, Q_ASSERT(false) causes my application to quit even though the documentation says it should allow you to break at the assertion:
On Windows, for debug ...
2
votes
3answers
214 views
In C#, is a Debug.Assert test run in release mode?
Take the following example:
public void Foo()
{
//Code...
Debug.Assert(ExpensiveTest());
//Code...
}
What happens to the the Debug.Assert method when I compile in release mode? Would ...
1
vote
1answer
212 views
Assert.ThrowsException in async function unit test?
I try to make a test method to test some simple data downloading. I made a test case in which downloading should fail with HttpRequestException. When testing its non-async version, test works great ...
0
votes
1answer
206 views
How to disable assert error dialog in child process
I'm creating child processes with CreateProcess function in MSVC++ 2010, and before that setting error level with SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
The task is to run ...
0
votes
4answers
574 views
Assert.AreEqual failed Error C#
I am pretty new to all this, so any help would be appreciated.
I have created a download image from url method and i need to test it.
i have tried filling in the test parameters but i am unsure of ...
0
votes
1answer
146 views
Unit Testing in Visual Studio: what to implement in my class to be able to use Assert.AreEqual?
I'm adding unit testing to my (Visual Basic) project. I'm using the testing tools in Visual Studio (2010 Premium). In a couple of test I would like to make sure that my class is equal to the expected ...
0
votes
0answers
528 views
assert problem boost c++ visual studio
I am having a problem when I am calling boost interprocess libraries from a Template class that I have created. The problem comes when I import the template (only one header file) in another project. ...
0
votes
1answer
531 views
Assert.AreEqual(expected, actual) for multiple expected values
How can I assert that a variable satisfies any one of two values in Visual Studio's unit testing environment?
I've seen other testing frameworks do it like this:
Assert.That(result.ViewName, ...
0
votes
1answer
1k views
VS2008 attaching a debugger (C++) to handle assert(…)
This is related to regular assert(...)
There are two scenarios that I'm interested to improve in my code.
1) a debug build app is started regularly, if there is an assertion I'm getting "Debug ...
8
votes
4answers
909 views
ExceptionAsserts & debugging your C# project in VS
We've been using NUnit & VisualStudio to write C# .NET code for a while now. Testing Exceptions was done in the style of
old syntax:
[Test]
[ExpectException(typeof(ExceptionType))]
public ...
1
vote
1answer
2k views
visual studio enable assert
I am trying to add assert statements to a project but they keep being skiped is there an option I need to enable somewhere. The assert statement is:
Debug.Assert(false, "Deserialization failed", ...
9
votes
2answers
4k 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 ...