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
0answers
30 views
Function '_assert' could not be resolved
I have this code
#include <cassert>
void TesterClass::testBankTransaction(){
//create three transactions
BankTransaction a;
a.setId(23);
a.setDate(QDate(2013,6,21));
...
4
votes
1answer
92 views
How can you test if assertions are active in Delphi?
What is the conditional to check if assertions are active in Delphi?
I would like to be able to do something to suppress hints about unused variables when assertions are not active in code like
...
1
vote
0answers
22 views
Is there a way to interrupt a jni C++ assertion in java and print a stack trace for at least my java code?
I'm currently developing a game using libgdx (java) which in turns uses native C++ (box2d) libraries. Sometimes I get an assertion in box2d (C++ library). It takes all from five minutes to an hour ...
0
votes
1answer
55 views
Checking if function was called with right arguments
Which coding-style is better / correct and why?
Using assert statement in each function:
def fun_bottom(arg):
assert isinstance(arg, int)
#blah blah
def fun_middle(arg):
assert ...
0
votes
4answers
66 views
look for a API/function which is like assert() without abort in C
the assert() function can print the error and where the error happens, but it will also abort the function.
I want to have a assert() function without aborting. I only hope to print the error, the ...
1
vote
0answers
29 views
phpunit assert that the element has a value
I'm using phpunit for the Yii framework. Tried creating a functional test. How to test that the existing element or label has a value.
I have read that
...
0
votes
0answers
46 views
java/android: asserts throws InvocationTargetException
Developing an android app in eclipse, running it on the emulator, and tries to trigger an assert with:
assert false : "test";
When it triggers, all I get then is an InvocationTargetException and no ...
0
votes
0answers
14 views
Popup a dialog for assertion failure
Assertions on android leave something to be desired for me :-(
I'd like to pop up a dialog like
ASSERTION FAILED
<what failed>
[Die] [IgnoreOnce] [IgnoreAlways]
This will let testers see ...
5
votes
1answer
101 views
Junit testing for base64 encoded string
I'm trying to read the contents of a PDF using Apache's PDFBox and encode it in base64 so I can stream it to elsewhere. To encode it I use the Apache commons Base64OutputStream class. Like so,
...
3
votes
3answers
27 views
Detecting JUnit “tests” that never assert anything
We used to have a technical director who liked to contribute code and was also very enthusiastic about adding unit tests. Unfortunately his preferred style of test was to produce some output to ...
0
votes
0answers
39 views
assert statement doesn't work in Android?
In the following code, the assert statement seems to be ignored:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState)
{
...
0
votes
1answer
19 views
Unpredictable dynamic predicate behaviour
I have a problem that requires me to add elements to a list that are spread across various predicates. Rather than doing via argument based lists I've opted to use a dynamic list predicate. I simple ...
0
votes
2answers
41 views
Assert that a test failure is a success
In a nunit test, can we an assert that if the test fails at a certain circumstance then it is a pass (i.e. it is expected to try and fail).
But it should pass under all other circumstances.
Thing is ...
0
votes
1answer
38 views
assertion fails for validator
I created a class and a validator so I wanted to do some tests using assertions for the validator. This is what I'm talking about:
class Medicine
class Medicine{
private:
int ID;
string ...
0
votes
0answers
41 views
Integration test all possibilities within one test case
I am running a test to see if an email is valid - valid as in not in use within the application by another user.
I want to show when a valid email is entered, that assert true hold, and when an ...
0
votes
2answers
72 views
Undefined behaviour in C++ asserts: accessing an invalid/null pointer
Under Visual C++ 2010, the following snippet hides a dubious behaviour:
CObject* myObjectPtr = CObjectFactory::MakeAnObject();
assert( myObjectPtr->CanDoSomeWork() ); // myObjectPtr can be null ...
0
votes
1answer
56 views
How to assert that memory is freed
I have a function in which there is a free of memory.
and I want after calling this function assert that the function has freed the given memory.
And I could not change any thing in this function.
...
1
vote
2answers
48 views
Extending XUnit Assert class with new asserts
I'm trying to extend the xUnit assert method by adding some selenium functionality
namespace MyProject.Web.Specs.PageLibrary.Extensions
{
public static class AssertExtensions
{
public ...
0
votes
0answers
70 views
Assert thrown by OpenCV checkVector() on otherwise valid vector<vector<Point3f>>
Been chasing this bug all night, so please forgive any incoherence.
I'm attempting to use the OpenCV's calibrateCamera() to extract intrinsic and extrinsic parameters from a set of fifteen pictures ...
3
votes
4answers
112 views
[C++ compile time assertions]: Can we throw a compilation error if some condition is not met?
I wrote a function:
template<int N> void tryHarder() {
for(int i = 0; i < N; i++) {
tryOnce();
}
}
but I only want it to compile if N is in between 0 and 10. Can I do it? ...
2
votes
1answer
54 views
Microsoft Z3 naming assertions
I need to name some assertions im my z3 model so that it is able to generate unsat cores.
I can do this manually like this:
(assert (! (assertion) :named x))
I just need to do it using the .NET ...
0
votes
1answer
28 views
Assert-Method with dot Operator
This is a question from a textbook with no answer key so it have to ask it here.
The "simple" version is:
assertEquals (resourceString, textView.getText());
If I have to use the dot-Operator for ...
0
votes
4answers
76 views
How to format a python assert statement that complies with PEP8?
How does one format a long assert statement that complies with PEP8? Please ignore the contrived nature of my example.
def afunc(some_param_name):
assert isinstance(some_param_name, ...
0
votes
1answer
44 views
Selenium IDE verify either “pattern1” or “pattern2”
Hello Selenium IDE Friends,
if have to test by Selenium IDE if a value matches either pattern1 OR pattern2. In PHP i would write:
if($value1 == $pattern1 or $value1 == $pattern2)
{
echo "match";
}
...
1
vote
1answer
77 views
Unit Testing: Assert that a file/path exists [closed]
I am attempting to create a regression test for my Installer. The regression test is a script written in Python. The test checks that the correct files have been installed in the correct place.
Is ...
0
votes
2answers
51 views
xpath - assertTextPresent isn't finding the text in the UL, why not?
If I have a list:
<html>
<head>
</head>
<body>
<ul>
<li><span class="A">Vans</span></li>
<li><span ...
1
vote
2answers
52 views
Symfony2 Validation Datetime 1 should be before Datetime 2
I'm looking through the Symfony2 Validation Reference but I'm not finding what I need.
I have a class Employment with a StartDate and EndDate.
I would like to add an \@Assert() where it verifies that ...
2
votes
3answers
137 views
Functional assertion in Scala
Is there built-in support for assertions that return a result?
It is very non-functional to do this:
def addPositive(a: Int, b: Int) = {
assert(a > 0 && b > 0)
a + b
}
I ...
0
votes
1answer
45 views
How to handle should.js assert error
How should one handle uncaught exception thrown by a should.js (or node.js) failed assertion and keep execution on the same function/block where the assertion failed?
I tried wrapping the assertion ...
0
votes
1answer
52 views
How to debug iOS assert failure crash when it leaves no stack
I am trying to debug what appears to be an assertion failure on iOS. The device in question seems to produce no crash logs. Instead, in the console, I see this:
Apr 11 16:22:56 iPhone5 ...
2
votes
0answers
56 views
save asserted in prolog
in prolog I asserted some fact :
for example :
assert(boy(john4)).
assert(boy(john3)).
assert(boy(john2)).
assert(boy(john1)).
how can i save this fact in file ?
thanks.
(i searched but not found ...
0
votes
2answers
90 views
assert function could not be resolved in eclipse c++
guys! I am trying to do some test functions using assertions:
test.h
#include <assert.h>
void testTheMedicine(){
Medicine m = Medicine(1, "para", 30, 40);
...
1
vote
1answer
62 views
CollectionAssert.AreEqual passes but CollectionAssert.AreEquivalent Fails?
I have build some complex objects and I am trying to verify it works correctly by doing some unit testing. This involves comparing some List(Of T), so I tried to use CollectionAssert.
Now I ...
1
vote
1answer
160 views
Comparing lambda expressions in C# with the help of ToString
I'm trying to Assert 2 Linq Expressions in a test. I'm using Moq and on callback capture the expression which was invoked inside the method under test.
Expression<Func<Role, bool>> ...
1
vote
4answers
154 views
Asserts and unused variables in Visual Studio 2010 SP1
I use the code below for assert in "release", have for some time with no issues ever.
Then along came Visual Studio 2010 Pro SP1, and things went south, as also happened to mr. Krunthar.
Problem is, ...
2
votes
2answers
207 views
How to have assert()s that depend on debug-only code compile in a Release build?
Wait! - this is not as silly a question as it sounds. The title is simply succinct.
I have some debugging code to verify the correctness of a data structure and some assertions checking this ...
0
votes
1answer
65 views
How to perform triple equals as negation
I am learning scala, and want to write my tests with ===. However, I am curious if there is a way to do something like this:
assert(1 !=== 2)
I have tried the above, !==, and !(===)
Is there any ...
2
votes
1answer
69 views
How to combine Java assert and (JUnit) Tests for public postconditions?
I read the Oracle recommendations concerning Java's assert and it says that you should use assert for public postconditions, too
...
0
votes
1answer
51 views
Should you convert exceptions to assertions to disable them at the customer?
A fried of my started to use exception in his Java project. Since an uncaught exceptions terminates the program he essentially converted all exceptions to assertions. He can therefore turn of all ...
0
votes
1answer
24 views
D3DXCreateTextureFromFile just returns a pointer rather than any decent message for me?
The following code for C++ DirectX Visual Studio 2012:
HRESULT result;
sprite = NULL;
result = D3DXCreateSprite( gfx.d3dDevice, &sprite );
assert( !FAILED( result ) );
...
0
votes
0answers
18 views
anuga model asserterror
Guys,
I installed a model called Anuga,When I do the test_all.py. there is a failure as follows.
FAIL: test_parabolic_solve_rectangular_cross_velocities_zero_h ...
0
votes
0answers
68 views
Openvas.omplib Python module AssertionError
i am trying to make a python module interacting with openvas on Kali Linux, and i used the openvas.omplib python module, the problem occurs when i try to create task:
...
2
votes
1answer
73 views
Java assert printing
I need to print the statement in the assertion to the console when condition is true in eclipse.
How?
public static void main(String[] args) {
try {
assert(args[0].equals("x")): "kate";
...
3
votes
1answer
130 views
Use of Spring Assert.notnull in production code
I have inherited an application that uses Spring Autowiring and each autowired constructor is littered with Assert.notNull() to check each argument before proceding.
I can't see how constructor ...
-1
votes
1answer
132 views
Asserting Correct Console Output in JUnit
I am trying to write a basic JUnit tutorial, and I am demonstrating this with a simple Hello World example using a basic service layer. My issue is that even though the test output matches my control ...
0
votes
0answers
25 views
Trouble with simple colision detection in ODE
I'm trying to drop a box onto a table in ODE4J. Sounds easy, no?
Case 1: The entire box is positioned over the table.
Result: Simulator spins up, et voila! Box on table.
This sounds good, but in ...
0
votes
3answers
152 views
Assert.AreEqual fails while it shouldn't
I have a really weird behavior which I cannot explain.
I have the following class:
public class Project
{
public virtual int Id { get; set; }
public virtual string Name { get; set; }
}
...
1
vote
2answers
124 views
@AssertTrue Method not called when submitting JSF page
I am using bean validation with hibernate-validator-4.2.0.Final and JSF 2.1. When i submit the page @NotEmpty, @NotNull,.. works correct , but my method, annotated with @AssertTrue is never called.
...
0
votes
2answers
68 views
Does the assert() in assert.h in the C standard library support some sort of failed assertion handler?
Normally when you call assert(foo()) and the assertion fails, the program automatically aborts. Is there any way to add some sort of handler that can clean up some resources before exiting?
0
votes
1answer
39 views
Can I get the names of the asserts if they happen in Qt? Console Application
I have a long running console application written in C++ (Qt). If an assert happens - my application crashes very bad.
So I need to know what assert is failed. I need to know this because I have to ...



