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.
0
votes
1answer
75 views
Alloy assert check
I'm trying to write an assert statement to the effect that once a mark is entered for
any student then the student always has a mark for that course (although it's possible the
mark may change). I ...
3
votes
4answers
2k views
Javascript - assert?
Pretty simple question to which I couldn't find an answer - what does assert mean in javascript?
I've seen something like:
assert(function1() && function2() && function3(), "some ...
2
votes
0answers
22 views
How can I make Visual Studio 2012 break on Debug.Assert for a Windows Store application? [duplicate]
I am using Visual Studio 2012 and developing a Windows Store application. I have added some assertions using Debug.Assert.
When I run the application in the debugger, I want assertion failures to ...
4
votes
2answers
49 views
Is Java assertion a global runtime option or can be partially applied?
I want to enable assertion in testing application server, but AS host deployments from another teams and my decision can conflict with them...
Quick web search show that assertion for Jboss can be ...
0
votes
0answers
63 views
uWSGI optimize option
I was looking at adding some assert statements in my code and wanted to be able to pass an argument to uwsgi to be able to turn off evaluating those statements in production. I can't seem to figure ...
0
votes
1answer
147 views
Comparing two DataTables (Unit Testing, Integration Testing, C#, TestMethod)
What kind of tests should be carried out in unit testing when comparing Datatables that are supposed to be different and have multiple rows.
[TestMethod]
public void ...
0
votes
1answer
262 views
JUnit assertTrue exception
I am trying to use JUnit 4.0 to test if an application is returning the expected output on a boolean method.
Test is similar to following:
import org.junit.Test;
import static org.junit.Assert.*;
...
1
vote
1answer
138 views
ShareKit assert: “ShareKit has been refactored to be used as Xcode subproject.”
I'm having trouble getting ShareKit 2.0 to work in my app. I've followed the latest installation instructions, creating a submodule for ShareKit, and tried cleaning and rebuilding, deleting and ...
0
votes
1answer
64 views
Repeated Code Asserting and Throwing
So far I've learned that (usually) when you assert, you should also throw. At first I wasn't sure it was right, it just made sense1, and then this answer verified.
The problem I have is that it ...
5
votes
1answer
99 views
Get string representing the expression used as function argument in C#
I'm developing for Unity3D using C#, and decided it would be useful to have an assert function. (In Unity3D, System.Diagnostics.Debug.Assert exists, but does nothing.)
As a developer that works ...
1
vote
0answers
108 views
lua loadlib dll
I am trying to load a dll (it's not my dll) and it's written in C++
There are no exports to my knowledge, but it does what I need it to do once loaded.
assert(package.loadlib(dllfile,'')()
This ...
3
votes
1answer
100 views
Fail an MSTest from background threads
I have an integration test that uses multiple threads. I'd like any thread to be able to fail the test (and tear down the rest). However, an exception on a background thread causes MSTest to fail - ...
0
votes
3answers
93 views
Prolog deciding a certain rule to choose depending on input
I've got this prolog problem I can't get around. What I'm trying to achieve is to assert FACT A, retract Fact B when I have input: take and assert Fact B and retract Fact A when I have input put.
ie:
...
1
vote
1answer
77 views
Why use assert instead of exception throwing?
In one of the online courses I am taking on Udacity regarding code debugging, the professor says it's better to use assert instead of exception throwing in the actual code.
Although through out my ...
0
votes
1answer
44 views
How should I use org.mockito.AdditionalMatchers.gt?
I'm trying to figure out how org.mockito.AdditionalMatchers works but I failed. Why is this test failing?
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
import static ...
0
votes
3answers
147 views
Should I use nunit's Assert.Throws method or Expected Exception attribute?
I noticed these seemed to be the two main ways of testing for exceptions.
Assert.Throws(()=>MethodThatThrows());
[ExpectedException(typeof(Exception))]
I was wondering which of these would be best? ...
0
votes
0answers
42 views
Enable assertions in Eclipse for all debug configurations
How can you enable assertions in eclipse for all debug configurations globally?
I have seen threads explaining how to enable assertions for one particular application, what I don't understand though ...
2
votes
3answers
176 views
Assert in Try..Catch block is caught
Just came across some interesting behavior - Assert being caught by Catch block.
List<Decimal> consArray = new List<decimal>();
try
{
Decimal d;
...
0
votes
1answer
125 views
How to do something useful with assert?
I want to do something more useful with assert than just aborting, that includes flushing some open files, and printing the stack trace.
I read a few articles on assert such as Assertions by Andrei ...
0
votes
1answer
42 views
Firing function on assert failure
I am working on complicated code generation using CodeModel available in Java. I have managed to setup my unit tests in such a way so that a test generates small but functionally complete Java code ...
4
votes
3answers
273 views
Is it evil to redefine assert?
Is it evil to redefine the assert macro?
Some folks recommend using your own macro ASSERT(cond) rather than redefining the existing, standard, assert(cond) macro. But this does not help if you have ...
2
votes
3answers
391 views
javax.annotation.Nonnull vs assert
I'm using Findbugs and javax.annotation.Nonnull on method parameters.
On private methods I usuallt add an assert line to check for nullness like
private void myMethod(@Nonnull String str) {
...
0
votes
2answers
51 views
How to fix b2Assert(kNormal > b2_epsilon) error in b2ContactlSolver?
In my iPhone app game the main character traps enemies (represented by b2bodies) in small spaces. Sometimes when too many enemies are trapped in too small of a space my game fails the ...
1
vote
2answers
81 views
Best practice for Python: assert command() == False [closed]
I wonder what is better/best:
>>> def command():
... return False
...
>>> assert command() == False
>>> assert command() is False
>>> assert not command()
...
1
vote
1answer
194 views
How to see C++ stack trace for assert failure in Visual Studio 2012?
How can I see the stacktrace when my assert fails in visual studio 2012? If I am attahed to a process, it works as expected, but when I just build using F5 (debug), my assert happens, giving me the ...
1
vote
2answers
125 views
assert invalid, misplaced or occurs too often
i'm coming accross with this error whilst trying to generate my XSD and can't figure out what i'm doing wrong; my code looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema ...
1
vote
3answers
133 views
Does ReSharper handle Debug.Assert(..) correctly?
I my code I'm using the System.Function method Debug.Assert(..) for verify the input parameter at the beginning of a metohd (see following example code snipped):
public class TestClass : IInterface
{
...
0
votes
0answers
113 views
python Mock “assert_has_calls” and “assert_called_once_with” nuance
I have a MagicMock object called some_magic_mock created for a test using a a patch.
Say the patched object is some_patched_object.
In the code-under-test there's a call:
...
2
votes
3answers
99 views
`assert` in loop
for(unsigned int i = 0; i < x.size(); i++)
assert(x[i] > 0);
When not debugging (NDEBUG flag), the resultant is an empty for loop. Is there a clean way to handle this (not executing the ...
0
votes
1answer
77 views
Symfony2 - @Assert\Email() changes field height
i'm using @Assert\Email to validate an email field, but it looks like it changes the fields appearence even if it' really doesn't... The css style is still there although somehow for an unknown reason ...
0
votes
1answer
101 views
JUnit JavaBean assert not null deep
How can a JavaBean be tested for deep not null?
I have a JavaBean with about 400 properties. MyBatis fetches the data from a database and uses a Result Map to initialize the JavaBean. What I'm ...
2
votes
2answers
106 views
C++ Assert Macro that report failure value
I have tons of run time assertion failure in my application and I need to sit with each one to find out what is the run time value of the assert conditions that results such a failure. For example:
...
0
votes
1answer
25 views
Breaking up assertions - or not
Is there a consensus about which of the following alternatives to go with (here exemplified in the C language)?
One assertion for all parameters:
int f(int m, int n)
{
assert((m >= 0) ...
0
votes
4answers
81 views
Ensure that a condition is always true in JavaScript
In JavaScript, is it possible to test whether a condition remains true throughout a program's entire execution? Here, I want to ensure that the variable a is always divisible by 3, from the start of ...
1
vote
2answers
76 views
Assert fails in Python
I have this code:
/server/frontend/wsn.py
Line 866:
netid = hextransform(int(nid), 16)
Line 156:
def hextransform(data, length):
data = hex(data)[2:]
...
1
vote
2answers
186 views
VS2012 MSTest fails to catch assertion, native c++
I'm just starting with MSTest in VS2012. I'm testing native C++.
I made a mistake in my application, reading 'off the end' of a STL string...e.g.
wchar_t c = p_filename[p];
..in my case p was 20000 ...
1
vote
3answers
309 views
Python unittest - asserting dictionary with lists
While writing some tests for my class, I encountered interesting simple problem. I would like to assertDictEqual two dictionaries containing some list. But this lists may not be sorted in a same way ...
0
votes
2answers
167 views
Robolectric & testing startActivityForResult
I have troubles with my Robolectric unit test.
I can assert without problem that a click started a new activity when the listener uses the method startActivity( Intent )
But it seems Robolectric ...
1
vote
2answers
136 views
TestMethod in c# for JSON data check from ASP .NET MVC controller
Please tell me how to get the value by not changing the controller action.
Controller
[HttpPost]
public JsonResult A_Action_In_Controller(Guid ID)
{
var ...
4
votes
1answer
156 views
Call function when stderr is written to in C++?
Is there a way to execute a callback function, or otherwise call a predefined function whenever data is written to a standard stream such as stderr or stdout? Ideally, this could be used to allow an ...
0
votes
2answers
116 views
VC++ debug assertion failed on program exit
I'm trying to create a linked list class template (Yes, I know there's one in the c++ library but I wanted to create my own for fun). I've traced through the code and all seems well until the program ...
0
votes
1answer
57 views
Google Test (gtest): ASSERT_PREDx and class member functions
Ok, so I'm using gtest for unit testing, and I've got something I want to do:
class A {
/* Private members */
public:
bool function_to_test(int index);
}
In the test function, I'd like to ...
6
votes
2answers
95 views
Java asserts not send to console when called from a runnable
In my program I made an assert - which evaluates to false - from a runnable, but never see any console output about the assert. I want to know if my asserts are false, but it seems the runnable is ...
1
vote
2answers
86 views
Assertions library for node.js?
Assertions provided by node.js assert for unit-testing are very limited. Even before I've written the first test I was already creating a few of assertions as it was clear I will keep re-using them.
...
3
votes
1answer
253 views
Assert.fail (node.js): what does Operator parameter mean?
Node.js unit-testing module has basic assertion assert.fail:
assert.fail(actual, expected, message, operator)
What does operator mean? I'm really new to unit-testing...
2
votes
5answers
277 views
Use of Assert and NULL pointer validation what's better to use
While doing programming i am using assert as well as NULL pointer validation.
But as i know assert will be useful only in DEBUG mode.
My question is suppose i have a internal pointer which i am sure ...
2
votes
5answers
137 views
do assertations exist in both JAVA and JUnit?
I am looking at one of the question that is posted long back by x person.
Ex: assertEquals(driver.getPageSource().contains("sometext"), true);
(or) assertEquals(boolean , boolean);
If the above ...
0
votes
1answer
84 views
ASSERT fail on creating D2D rendertarget
I am building a MFC c++ program.
This program contains a class called faceTracking. This class normally had only one drawing job an thus I only passed on the MFC object it needed to draw to. This ...
0
votes
0answers
57 views
I have this code for Normal Distribution in Matlab but it doesn't work [duplicate]
Possible Duplicate:
my Matlab code doesn’t give me the correct results .How can i fix it it
I have this code for Normal Distribution in Matlab but it doesn't work. Could anybody explain me ...
1
vote
1answer
138 views
how to assert true for two different values in a for loop?
I've data in mongo which I need to validate:
"items" : [
{
"item" : 0,
},
{
"item" : 1,
}
],
There's a ...

