Assertion is a method of verifying, if the code works as it was designed to. For instance, after reading an XML file, the result should contain exactly one root node. Failed assertion means, that program is in an unstable state and usually in such case its execution is terminated.
0
votes
1answer
14 views
Assertion failure :: malloc
I am running code in a coding site and got following error:
solution: malloc.c:2369: sysmalloc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof ...
1
vote
2answers
35 views
Python unittest call function when assertion passes
I can't find a way to do_something() when the assertion in a test passes. For example:
def test_one(self):
self.assertEqual(1,1, "Did not match")
That test will print "Did not match" if ...
0
votes
1answer
30 views
SVA: Use of implication (|=>) vs sequence?
SystemVerilog Assertion properties can be built with implication operators |=> and sequences ##1
For example :
property P1;
@(posedge clk)
A ##1 B |=> C ##1 D;
endproperty
Above we ...
0
votes
2answers
31 views
Robotium : Is there a way to check for an activity to NOT exist?
I'm automating an app that shows some overlay messages anywhere on the app for several scenarios, such as app installed for the first time etc. (I'm fairly new to Robotium too.)
The overlay displays ...
1
vote
7answers
78 views
How can I best assert a value can be converted to int in Python?
I'm writing some tests in Python and for one of the tests I need to verify that a value either is an int or can be converted to an int cleanly.
Should pass:
0
1
"0"
"123456"
Should fail:
""
"x"
...
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
1answer
24 views
How to check the value is in object with Chai?
Is it possible to test the value is contained within certain array with Chai assertion library?
Example:
var myObject = {
a : 1,
b : 2,
c : 3
};
var myValue = 2;
I need to do something ...
0
votes
0answers
45 views
ios PhoneGap crash log… odd memory location
I'm trying to decipher what is going on with a crash I'm having with a sencha-touch/phone gap/ios app. When the app crashes I get a
MyApp [131] has active assertions beyond permitted time:
{(
...
0
votes
0answers
35 views
intercept c-assert with python unittest
I want to test a class written in C++ using unittest in python. If the argument of the constructor of the class is wrong the class raises an assertion (using <cassert>)
I am trying with:
...
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 ...
1
vote
1answer
78 views
Erlang - Eunit setup function doesn't run
I would like to write tests, where setup and cleanup functions don't execute for every single test, but once - at the start of testing and at the end of testing.
So i tried this way:
...
0
votes
1answer
33 views
Add assertions to List
I have a list of assertions that will test my case. The tests will pass but I want to add them all to a list so that I can send that list to an xml file.
I did this with an xml file but any help on ...
0
votes
1answer
34 views
Run Nunit assertions from another class
I have two classes that I made to build up an order. Basically the class to create the order works fine but I want to use assertions to validate the information that comes back. The first class builds ...
2
votes
1answer
88 views
Z3: Check if model is unique
Is there a way in Z3 to prove/show that a given model is unique and that no other solution exists?
A small example to demonstrate
(declare-const a1 Int)
(declare-const a2 Int)
(declare-const a3 Int)
...
0
votes
0answers
37 views
Code rewrite in Z3 with quantifiers
guys
I'm writing a model using Microsft Z3 and I need to add the following assertions to it:
(declare-const line (Array Int Int))
(assert (and (> (select line 1) 0) (< (select line 1) 4)))
...
0
votes
0answers
30 views
Python 3.3 AssertionError: Tuples differ: (0.00, 0.00) != (0.0, 0.0)
I've been writing a function in Python 3.3 to take a list of values and sum all the positive values and all the negative values separately, and then produce a tuple containing (total_positive, ...
2
votes
1answer
98 views
Assertion fail message for string contains substring [duplicate]
I have done a lot of functional testing on text outputs on text generating software lately, an find myself writing a lot of
assertTrue(actualString.contains(wantedString));
However, the message ...
1
vote
1answer
181 views
OpenCV's calcOpticalFlowPyrLK throws exception
I have been trying to form a small optical flow example with OpenCV for a while now. Everything works except the function call calcOpticalFlowPyrLK, which prints the following failed assertion in the ...
2
votes
2answers
72 views
JUnit4: is() vs is(notNullValue())
Regarding JUnit4 assertThat, I have seen this done both ways. Is one correct over the other or is it all the same?
byte[] val;
...
assertThat(val, notNullValue());
--vs--
assertThat(val, ...
-1
votes
2answers
49 views
Weird behavior of assertions in Eclipse
I have found a strange behavior of assertions in Java (Eclipse). Easy example: If i execute this...
public static void main (String[] args) {
assert(getA() == "a") : "Invalid";
...
3
votes
1answer
119 views
openssl error “assertion failed” during EVP_EncryptFinal_ex, delphi
While working with openSSL library, I met a problem with EVP_EncryptFinal_ex.
Concretely, it fails with fatal error ./crypto/evp/evp_enc.c(348) OpenSSL internal error, assertion failed: b <= ...
1
vote
0answers
40 views
What's the meaning of SubjectConfirmation in OAuth2 SAML authorization grant?
The OAuth2 SAML bearer spec describes how an application can present an assertion to a token endpoint as an authorization grant. For example, Salesforce's API allows this approach to enable apps to ...
0
votes
1answer
43 views
Python 3.x - Data Annotation Validation Equivalent
I am trying to identify a way to implement same concept as data annotation validation from .NET in Python. It would be something like the following:
class MyClass:
@Property
def ...
0
votes
1answer
63 views
Assertion failed when opening Facebook eml in WPF WebBrowser
I have some saved eml files and im displaying them in a WPF WebBrowser control by renaming the file extension to .mht, which IE (& therefore the WebBrowser control) will display quite happily.
Im ...
2
votes
1answer
188 views
Parameterized Variables for use in Assertion Groovy Script
Essentially, I am using SoapUI for some smoke testing and have created an assertion script that checks if there is data within an SQL database.
This test has to be ran on three different ...
1
vote
5answers
111 views
c++ preconditions/assertions
This is not my homework -- I'm just practicing. I can't seem to wrap my mind around this assertion concept.
1) Determine the pre-condition for x that guarantees the post-condition about y
{ _______ }
...
0
votes
1answer
98 views
Sub query in check “not allowed here”
I am trying to add a constraint onto one of my tables to ensure that my workers maintain a station if and only if that station is in the state which the worker is currently employed. However, it seems ...
0
votes
1answer
16 views
Can assertions be used in production or only while developing?
Following this question:
Avoiding "!= null" statements in Java?
I asked one of our senior developers why wouldn't why use assertions. While his answer proved reasonable (we use custom ...
1
vote
2answers
173 views
Cocos2d and SpriteBatchNode: cannot identify which sprite frame is causing an Assertion to fail
I have already asked something similar but I can't figure out properly how to debug this. That's the question.
I added some Exceptions handler (catches all Objective-C) exceptions and that's the ...
1
vote
3answers
120 views
How would Object.defineProperty be in AS3?
I'm an architect from a strong JavaScript background, but I did some .NET and Java in the past.
However, I wanted to put a hand on ActionScript3, which I was promised that is very related to ...
0
votes
2answers
61 views
Enabling java assertions when using SBT to manage builds
For the first time in a while I'm doing java programming outside of Eclipse (for coursera algo course) and I'm trying to use SBT for builds. SBT works fine (slow to start though) but I cannot figure ...
0
votes
1answer
26 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) ...
2
votes
2answers
74 views
Extending Simple.Data with assertions
I'm using this very nice mini ORM, Simple.Data, to setup a lot of test data, quick and easy.
I would really like to extend it for assertions. For example i would like to assert on count:
...
1
vote
0answers
60 views
How to avoid very last assertion (if I understood it properly)
I'm following http://verificationguild.com/modules.php?name=Forums&file=viewtopic&p=5019 to check period of particular signal.
That method works perfectly, but at very end of simulation if ...
4
votes
3answers
56 views
In Java, how can I fail if my program is run without -ea?
Is there a way to check if the program was started with -ea so that I can exit/fail if it wasn't? If an assertion fails, I want to be informed about it. Therefore, I consider it a critical error to ...
-2
votes
1answer
118 views
How to apply assertion in REST API testing through soap UI
I am namrata ...
I have been doing REST API testing in my company. I a new for API testing.
I have done simple REST API testing using SoupUI.
My Question: I would like to know, how can I go for ...
2
votes
1answer
258 views
Why do I get this Debug Assertion Failed? Expression: list iterator not dereferenceable
I'm trying this example in the (translated to dutch) book of Bjarne Stroustrup (C++):
#include <vector>
#include <list>
#include "complex.h"
complex ac[200];
std::vector<complex> ...
0
votes
1answer
73 views
JUnit testing method with assertions
The isSorted() instance method in class A has a bug:
public class A {
private int[] a;
public A(int[] a) { this.a = a; }
/** Return true if this A object contains an array sorted
* in nondecreasing ...
1
vote
3answers
580 views
UICollectionView: Assertion failure in -[UICollectionView _endItemAnimations]
I'm getting this error in my app:
* Assertion failure in -[UICollectionView _endItemAnimations], /SourceCache/UIKit/UIKit-2372/UICollectionView.m:2801
It happens in my -controllerDidChangeContent: ...
-1
votes
2answers
34 views
Close a program if file being read isn't formatted properly?
My program reads a file the user chooses.
Edit: The file contains, a 4 character String, 4 digit int, and char (In that order) on one line, with an undisclosed number of lines.
If one of these is ...
2
votes
2answers
146 views
Why doesn't this regex pattern match this text? (Simple regex just includes escaped text with wildcard in the middle)
Apologies if this is a duplicate; I promise I did search.
I'm working on a C# integration testing project using NUnit in Visual Studio 2010 Professional, running the tests with Resharper v6.1. ...
0
votes
2answers
276 views
Assertion, is null or is an instance of specific Class
simple I thought
Assert.assertThat(
iterator.next(),
Matchers.either(Matchers.nullValue()).or(
Matchers.instanceOf(Double.class)));
So I'd ...
3
votes
1answer
38 views
shrink array function gives assertion error
I am practicing how to create a 2D array and shrink it.
This is my function:
void Resize(int rownums,int columnnums)
{
MyMatrix newM(rownums,columnnums);
for(int i=0;i<rownums;i++)
...
2
votes
2answers
104 views
MySQL trigger (replacing assertion) does not work
Can you help me with this problem? I have two tables in a MySQL database:
ServiceProvider(SPID, Name, ... etc.)
hasTag(SPID, TagID)
Each service provider is supposed to have at least one tag, and a ...
-5
votes
2answers
46 views
Add numbers into a PHP Array [closed]
I want to store numbers in an array not beyond 20. I want a function to add the numbers with a for loop to iterate over the numbers. I want to just use the assert method to run tests on the numbers. I ...
2
votes
1answer
73 views
Debug Assersion Failed
I am attempting to create my own hash class for a school assignment, but after getting part of the way there I am stuck on an error that I haven't been able to debug.
When I run my project I get a ...
0
votes
1answer
65 views
Is there a difference in compiled Java with asserts disabled between assert someBoolean(); and verifySomeBoolean(); where latter contains an assert?
I have a postcondition I want to check regularly, across many methods. I'm fairly confident that I'm using the assert correctly, i.e. only checking something to make sure my code isn't doing anything ...
5
votes
2answers
848 views
How to create a modal messagebox in WinRT using native C++
I'm working on a cross-platform C++ SDK at the moment and I have to port our assert handler to WinRT. One part of the process is to display a message box, wait for the user input and trigger a ...
1
vote
2answers
42 views
assertSame() weirdness?
Can someone explain me this?
String str1 = "123";
String str2 = "123";
assertSame(str1,str2); // works
assertSame("1", new String("1")); // fails
Why does the first assert work, ...
1
vote
1answer
75 views
My JUnit rule to turn on assertions doesn't seem to do it on our Jenkins build
I want assertion failures throughout the code to cause my tests to fail.
I have a JUnit rule like this:
public class AcmeTestRule implements TestRule {
@Override
public Statement apply(final ...