The assertion tag has no wiki summary.
2
votes
2answers
120 views
hashCode with same elements but different values
This is my Heap 12 File i keep on getting an error on my hashCode()...
Please help, I am getting an assertion error when it should be even
It looks similar to my peer's codes and the tutors cannot ...
2
votes
2answers
64 views
Assertions C# + When to use them
I have seen couple of posts regarding usage of Debug.Assert in C#.
But I still have one doubt, may be its repeated, but I need to ask.
Is there a strict rule that Debug.Assert should be used only for ...
0
votes
1answer
68 views
How to practice with Xpath Match Assertion in SoapUI?
I have tested Contains Assertion without any issues but I don't know how to validate the webservices using Xpath Match Assertion in SoapUI.
Can you please tell me how to workout 'Xpath Match' ...
2
votes
2answers
156 views
Delphi: How to get (current code line, current unit, current function) without using Assertion?
I am trying to create a log system on my program that will log debugging messages on text files, and I want to save the exact place in the code where the log message called, but I don't want to use ...
0
votes
2answers
34 views
Debug assertion failed message
For some reason, when I use the destructor for my Update class, a debug assertion fail message displays...
here is my Update class with some code omitted for brevity. Placed in a header file:
using ...
-1
votes
1answer
20 views
Error reading values from Mat
I am trying to implement HMM in opencv.
First i create arrays of double, and copy them to Mat variables,
Mat INIT = Mat(0,3,CV_64F,trans).clone();
Then i am trying to access the individual ...
0
votes
1answer
96 views
UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath: but I do
I dont understand this: my cellForRowAtIndexPath: indexPath: returns a proper UITableViewCell.
(I have an assertion to the effect that it is not nil and a trace to prove it)
But I am stil getting ...
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
1answer
47 views
Farseer Assertion Failure
We're creating a game for a school project. It's a 2D platformer and it is in its very early stages. We use C#/XNA and we're implementing Farseer Physics Engine.
I'm currently struggling with the ...
0
votes
1answer
69 views
Assertion failed
why do i keep receiving this error when i use cvIntegral()
if ((image = cvLoadImage(filename,1))==0){
return -1;//if there is something wrong exit with -1
}
image2 = ...
2
votes
2answers
66 views
C++ Assertion function to check that Exception is thrown
I'm familiar with how the standard C++ assertion works. This has worked well in my project for a variety of testing purposes.
For example, suppose that I want to check that a certain exception is ...
0
votes
2answers
132 views
Handling Assertions in TestNG
How can I continue the test execution in TestNG if an assertion fails? How can I report the failure in the HTML report of TestNG?
When I run the following code, the lines after assertion are executed ...
0
votes
2answers
95 views
Assertion error with arrays
Public class Person {
private Skill[] skills;
public Skill[] getSkills() {
return skills;
}
public void setSkills(Skill[] s) {
if (s!= null) {
skills = ...
0
votes
1answer
82 views
MongoDB C++ Driver Assertion Failure
The Problem
When I try to insert a document into MongoDB with the C++ driver, I get the following exception message:
Wed Feb 27 15:21:38 Assertion failure p src/mongo/client/dbclientinterface.h ...
1
vote
1answer
94 views
Is that possible, at compile time, to disable guava's Preconditions like we disable Java 1.4's assert keyword?
I used to insert java1.4's assertion construct in my codes and find it really practical because it allows me to enable the inserted assertions in debug- time and disable them at compile-time.
My ...
0
votes
2answers
101 views
Assertion: The pointer MUST come from the 'local' heap
I am testing a little sound library called clunk (http://sourceforge.net/projects/clunk/).
I built that library for visual studio 11 and linked it in my visual studio project. When I try the test.cpp ...
0
votes
1answer
143 views
unittest for none type in python?
I was just wondering how I would go about testing for a function that does not return anything. for example, say I have this function:
def is_in(char):
my_list = []
my_list.append(char)
and ...
0
votes
1answer
27 views
delegatin assertion
Hi I want to improve my math library,
when I compute lenght of something I do
assert( !equal(len,0.0));
const f32 invsqrt = 1.0/sqrt(len);
X*= invsqrt;
Y*= invsqrt;
Z*= invsqrt;
this code is nice ...
2
votes
2answers
171 views
How can I refresh SAML assertion information from an WSO2 identity server?
I'm building SAML 2.0 based authentication to a web application. The authentication is done against an WSO2 Identity Server (WSO2-IS). I have managed to get the actual authentication working using ...
2
votes
4answers
104 views
runtime assertion error while operating on vector c++
i have an array arr of vectors and I want to search and remove from the array vectors which have a specific value in one of elements, call it elementA. It happens to me, that if you have a look inside ...
0
votes
0answers
47 views
boost runtime error when using Makefile: Assertion `0 != m_pimpl.get()' failed
I have a program that mainly uses boost_regex compiling AND running just fine with the following command-line code:
clang++ anime.cpp src/nico/*.cpp src/notifyOSD/*.cpp src/twitter/*.cpp ...
0
votes
1answer
116 views
What is the expected syntax for checking exception messages in MiniTest's assert_raises/must_raise?
What is the expected syntax for checking exception messages in MiniTest's assert_raises/must_raise?
I'm trying to make an assertion something like the following, where "Foo" is the expected error ...
-3
votes
3answers
267 views
Failed to test special characters using contains() in webdriver
I want to verify whether the particular text is present on the page or not.
I used the following code:
driver.getPageSource().contains("String to check");
The above code is working only for the ...
0
votes
1answer
267 views
C - sYSMALLOc: Assertion failed (realloc)
I am trying to write a function that searches for all occurrences of a pattern and returns an array of offsets in the file that match the pattern. I want to use realloc to dynamically grow my returned ...
2
votes
3answers
166 views
negative lookahead assertion not working in python
Task:
- given: a list of images filenames
- todo: create a new list with filenames not containing the word "thumb" - i.e. only target the non-thumbnail images (with PIL - Python Imaging Library).
...
-2
votes
1answer
341 views
Debug Assertion Failed String subscript out of range [closed]
So I wrote a simple Hash class, and when using the visual studio environment I get a debug assertion error "Expression: String subscript out of range" However when I use c++ Linker on the command ...
0
votes
2answers
79 views
Rails unit testing - Find out why exactly the assertion failed
I have written a unit test whose assertion fails - I would like to find out why, without having to inspect every attribute of the model.
Here is my test:
test "a correct document should be saved" do
...
1
vote
1answer
427 views
JMeter Response Assertion: incorporating property into pattern test
I'd like to setup a JMeter test plan to suggest whether a web site (URL) is Drupal-based (based completely on the HTTP response from the site) and compare it with existing data that I have on the ...
2
votes
1answer
200 views
Strange error Assertion failed: (slab->magic == SLAB_MAGIC (bucket_idx))
I´m developing an app in IOS-5 using the following sample code: GridView
Assertion failed: (slab->magic == SLAB_MAGIC (bucket_idx)), function slab_dealloc, file x-alloc.c, line 567.
I've ...
-2
votes
1answer
399 views
VS2010: assert “vector iterators incompatible” in std::vector.clear() [closed]
I'm using following stupid code:
std::vector<wxString> m_redoSteps;
...
m_redoSteps.clear();
When I'm compiling with Visual Studio 6 or GCC m_redoSteps.clear() works fine, when I use visual ...
1
vote
1answer
197 views
Python NLTK NGrams Error
I'm running a code to get the perplexity, number of ngrams from a text corpus. While doing it, I got a weird error saying:
C:\Users\Rosenkrantz\Documents\NetBeansProjects\JavaApplication2>python ...
1
vote
2answers
91 views
Create SQL assertion that count() from one table is less than a tuple value from another table
There is are two tables:
Classes(CourseNo, SectionNo, Year, Semester, Capacity) (bold indicates a key).
Enrollments(CourseNo, Year, Semester, SectionNo, StudentNo, Grade)
How would I use SQL in ...
0
votes
1answer
99 views
Visual Studio Assertion Failed on C++ set comparator
my code are having some problems on my Visual Studio 2010 but not on DevCPP. Heres the situation, I used C++ STL set in my code to insert pair<string, double> but then I want my set to sort them ...
1
vote
0answers
155 views
getting: *** Assertion failure in -[UIStoryboardPushSegue perform]
I am Using Storyboard for a master/detail iPad app.
MenutabViewController is a UITabBarViewController.
Another Scene of the app starting from the same Controller, doing similar PUSH segues ...
0
votes
2answers
265 views
C++ Debug Assertion Failed
I've written my own list class for practice, here it is:
#pragma once
#include <iostream>
using namespace std;
// A linked node structure.
template <typename T>
struct LinkedNode
{
...
1
vote
2answers
85 views
Assertion error, string subscript out of range
I almost have this menu done and working the way I want it to. However, I get an assertion error when I press Enter without inputting anything. Here is the code
#include <iostream>
#include ...
0
votes
3answers
798 views
How to verify a Text present in the loaded page through WebDriver
I need to verify a Text present in the page through WebDriver. I like to see the result as boolean (true or false). Can any one help on this by giving the WebDriver code?
0
votes
1answer
90 views
Can't figure out why my program is asserting
I'm working on an simple vector program as an assignment, but I cant figure out my why program asserts. My program compiles successfully, but fails at runtime. I think im at the reach of expertise on ...
0
votes
0answers
40 views
Chrome throws a lot of AssertionErrors using Class.wrap-functions in GWT
I use a lot of the .wrap(Element) -methods GWT offers to get control over buttons etc. which are in the original HTML-doc already. For example:
private static Anchor register = ...
0
votes
3answers
549 views
C++ char array concatenation
I'm trying to overload the plus sign to concatenate two strings, but I keep getting an error.
VS 2010 gives an assertion failed message : "Expression: (L "Buffer is too small" && 0)" ; File: ...
0
votes
1answer
639 views
How to get SAML assertion from OpenAM (using Java)?
I'm in the midst of finding some means (preferably through Java code) that will enable me to get the SAML assertion from the IDP (i.e. ForgeRock's OpenAM) for a Service Provider (SP) via SSO Login.
...
4
votes
3answers
115 views
How to test programmatically wheather assertions have been enabled?
One of the answers of Practice Exams (OCP Java SE 6) questions is:
*You can programmatically test wheather assertions have been enabled without throwing an AssertionError. - Correct answer
and my ...
0
votes
0answers
21 views
what do i need to have a restriction of unique Fname and Lname?
Create a schema declaration for the element customers. It will contain a sequence of customer element which has a minimum occurrence of 1 and maximum occurrence of unbounded.
Under the customer ...
6
votes
3answers
345 views
Why doesn't Guava have postconditions? What can I use instead?
So, Guava has simple yet useful Preconditions to check method arguments. But I guess it would be reasonable to have a "Postconditions" class too. Or is it just because java provides assertions?
Since ...
1
vote
1answer
104 views
Symfony2 integer type and NotBlank constraints are triggered at the same time
I'm trying to validate a field in a form with the NotBlank and Type constraints. My problem is that when I enter a value that doesn't match the type both error messages are displayed. I have seen ...
5
votes
1answer
172 views
SQL: Enforce cardinality with assertions
To explain the diagram.
Two entities: E1 & E2
Cardinality:
-from E1 to E2 (through relation R): (6,50)
-from E2 to E1 (through relation R): (3,5)
______ ^ ______
| ...
0
votes
2answers
88 views
Displaying Result and Expected values of an Assertion in CakePHP testing
Does anyone know if there is a way to force CakePHP TestSuite to view the Expected and Result values of an assertion when it fails? Typical PHPUnit tests are showing it by default in the output but ...
0
votes
1answer
19 views
Is there any way to assign several sources to one assertion in soapUI?
Is there any way to assign several sources to one assertion in soapUI 4.5.1? For example i need to check all services responses if they contain some element.
0
votes
0answers
138 views
Debug assertion when I call CDialog.DoModal in PreTranslateMessage
Mi code is like this:
BOOL CDialog1::PreTranslateMessage (MSG *pMsg)
{
CMyDialog dlg; // from a .dll
dlg.DoModal();
return (CDialog::PreTranslateMessage ...
2
votes
1answer
350 views
Xpath Post Processor : extract node content from a SOAP response
I have a soap response of this form
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:Responseto xmlns:ns2="http://xyz.company.com/">
...