Tagged Questions

0
votes
4answers
93 views

Why won’t a Hashtable return true for “ContainsKey” for a key of type byte[] in C#?

Consider the following code: byte[] bytes = new byte[] { 1, 2, 5, 0, 6 }; byte[] another = new byte[] { 1, 2, 5, 0, 6 }; Hashtable ht = new Hashtable(); ht.Add(bytes, "hi"); …
0
votes
2answers
14 views

Borland Assertion failed in local_unwind()

I have a comms server that is supposed to run for an indefinite amount of time. However, it sometimes errors with Assertion failed: !"bogus context in Local_unwind()", file xx.cpp, line 2262 …
1
vote
1answer
26 views

RAILS - How deep does assert_raise check for an exception

Should the following test assert an exception was thrown? On my pc it doesn't and I want to know if this is expected behavior. def a raise RuntimeError end def b begin a …
1
vote
3answers
34 views

Enabling assertions in Netbeans

I wanna do something like java -enableassertions com.geeksanonymous.TestClass How do I do this?
0
votes
3answers
34 views

Why am I getting an assertion error?

#include <iostream> using namespace std; int main () { int size = 0; int* myArray = new int [size + 1]; cout << "Enter the exponent of the first term: "; cin >> size; cout …
1
vote
2answers
29 views

Xunit: Perform all ‘Assert’ions in one test method?

Good afternoon, is it possible to tell xunit.net to perform all e.g. Assert.True() in one test method? Basically in some of our use/testcases all assertions belong logically to one and the same …
2
votes
5answers
195 views

SMART ASSERT for C++ application?

Is it good to define a new macro that craters my need of showing failed assertion to user and with just enough information for developers to debug the issue. Message for user, what the user …
4
votes
3answers
74 views

JUnit: Enable assertions in class under test

I've been bit a few times by Java assert statements that didn't fail in the JUnit test suite because assertions weren't enabled in JUnit's JVM instance. To be clear, these are "black box" assertions …
0
votes
2answers
25 views

Can I write custom assertions in CxxTest?

I'm just starting to use CxxTest and would like to test whether a std::vector has been sorted correctly. Here's my test so far: void testSort() { std::sort(vec.begin(), vec.end()); // This could be …
0
votes
1answer
30 views

proper use of assert.h in debugging

Hi! c++ with visual studio 2008 if i use assert() from assert.h and compile in debug mode, the application crashes if the assert condition doesn't hold and it prints me in the console on what line …
7
votes
8answers
619 views

Java assertions underused

Hi, I'm wondering why the "assert" keyword is so underused in Java? I've almost never seen them used, but I think they're a great idea. I certainly much prefer the brevity of: assert (param != null …
1
vote
2answers
659 views

SAML Assertion WriteXML issue in C#

I've created an instance of a SamlAssertion, and added the the authorization statement and attribute statments to it, and now I want to print out the XML so I can do an HTTP post, but not all of the …
9
votes
8answers
680 views

Debug.Assert vs Exceptions

Surprisingly I was only able to find one previous question on SO about this subject, and I'd just like to get the community "Vote of Confidence" (or not!) on my approach. The way I see it is thus: …
4
votes
2answers
202 views

NUnit: Assert.Throws

How do I use Assert.Throws to assert type of the exception and the actual message workding. Something like this: Assert.Throws<Exception>( ()=>user.MakeUserActive()).WithMessage("Actual …
0
votes
1answer
40 views

Test ajax in rails

Hi In my action i have render :update do |page| page["an_id"].value = "string" end My question is how can i test that the textfields value is changed propely? Tried assert_select_rjs, but …

1 2 3 4 next
15 30 50 per page