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
2answers
65 views
wired junit test assert
Hi i have the following junit test
@Test
public void testTest() {
AddressEntity entity = null;
assert (entity.getStatus() == StatusType.REMOVED);
}
in eclipse it goes green, maven finds ...
2
votes
5answers
212 views
Why assert macro makes use only for debug build
Why is this a common practice to have assert macro do something useful only in debug configuration? If it exists to test invariants and detect coding bugs, then would not it be easier to go ahead and ...
-3
votes
2answers
129 views
How to Enable assert in java [closed]
i am using eclipse and getting an error assertArrayEquals(expectedPos, sent.getPosTags().toArray()); is not Defined? i have imported
import static org.junit.Assert.*;
idont know how to fix it?
...
1
vote
3answers
506 views
How to log a true result of an Assert
I am writing some tests using TestNG, WebDriver and log4j
I am trying to log the result of an assert nomatter if the result is true or false. For example, when i write this code:
...
0
votes
1answer
185 views
CodeContracts: Reuse of assumptions/asserts?
I've posted this on the CodeContracts forum at the MSDN but apparently no one knows or bothers to look into this issue.
I've tried to reduce the repetitive asserts and make it more reusable but ...
0
votes
1answer
139 views
Zend PHPUnit testing a model, asserting a Zend_Exception indeed occurs as expected
Consider the following code in a model. the function deleteUser(NULL) will trigger an exception.
class Model_UserModel extends Zend_Db_Table_Abstract{
protected $_name = 'users';
protected ...
2
votes
1answer
482 views
How to handle AssertionError in Python and find out which line or statement it occurred on?
I want to handle AssertionErrors both to hide unnecessary parts of the stack trace from the user and to print a message as to why the error occurred and what the user should do about it.
Is there any ...
1
vote
1answer
137 views
Testing for side-effects in python
I want to check that my function has no side-effects, or only side-effects affecting precise variables. Is there a function to check that it actually has no side-effects (or side-effects on only ...
0
votes
2answers
69 views
check the number of class members in constructor
I'm writing a class where I am constantly adding new members (it's a prototype for a project) and I have implemented my own constructor, copy constructor, copy operator, etc... As I add more members I ...
0
votes
2answers
101 views
Assertion Failed in C++ questions
Running into an issue with some code I'm working on. This code is being run on a linux-based system and the error I receive is the following:
...
4
votes
5answers
240 views
Any benefit of using assert instead of using a simple “if” ?
Given this code :
#include <stdio.h>
#include <assert.h>
void print_number(int* somePtr) {
assert (somePtr!=NULL);
printf ("%d\n",*somePtr);
}
int main ()
{
int a=1234;
int * b ...
3
votes
3answers
3k views
how can I check if some text exist or not in the page?
I use selenium webdriver, how can I check if some text exist or not in the page? Maybe someone recommend me useful resources where I can read about it. Thanks
1
vote
2answers
51 views
Java - cannot step into a function when function is called within an assert
So I noticed while debugging a Netbeans Java application when a function call is used in an assert function, you cannot hit a breakpoint within that function or step into that function.
At first I ...
0
votes
4answers
410 views
How to run a program using JDK1.3 in Eclipse(installed JDK1.7)?
i want to run this program using JDK1.3 . . . How to run this code by using Eclipse as i installed JDK1.7. In this program "assert" cannot be used as identifier from JDK1.4 onwards, as it is changed ...
3
votes
4answers
353 views
how to enable java keyword assert in Eclipse in program wise?
i want to know how can i enable assert keyword by using eclipse . . .
public class A
{
public static void main(String ... args)
{
System.out.println(1);
assert false;
...
2
votes
1answer
906 views
How can you assert a null tag in a response?
I am using a datasource to drive a test step which sends a SOAP request and gets a SOAP response back.
When I am validating the response, sometimes I expect one of the fields to be have a value ...
0
votes
0answers
76 views
Assertion failed in dgbheap.c if include atlimage.h?
in a window form application, if the "atlimage.h" is included, there is a assertion failed in "dbgheap.c" line 1516 when I run the project.
What the problem might be???
Thanks!!
1
vote
0answers
201 views
Linux kernel BUG() sometimes does not print stack trace and regs
We have a kernel module that uses BUG() in case of failed assertions. The module is for ARM architecture. Typically the registers and stack trace are printed on serial console when BUG() is used. In ...
0
votes
2answers
176 views
How to enable assertions in Eclipse v3.7.2
I can't seem to get assertions working in my eclipse android project. I have followed the directions at this site
But I still can't get them to work. My code looks like:
assert(false) : "PROGRAM ...
0
votes
1answer
271 views
Simple singleton pattern - Visual C++ assertion failure
I'm recently programming a very simple logger class in Visual C++ 2010, but I have a problem. Everytime I run the program, a debug assertion failure appears.
Expression: ...
-3
votes
1answer
342 views
When JSR-308 will become part of JDK? [closed]
See my blog post for excerpt from Java Posse #386 - Newscast for May 31st 2012 that expands this topic.
Does JSR 308 promotes design-by-contract to Java? It is step further from assertions? When it ...
1
vote
4answers
109 views
Confusion about throw and assert
This is the first time I'm writing a library (for me to use on several games) so I think for good programming practice I should comment my code throughly, adding XML summary and use exception handling ...
11
votes
2answers
170 views
Compiling without assertions
I know assertions can be enabled/disabled at runtime for debugging and production, respectively. However I found that assertions also increase the size of the generated binary (about 100-200 bytes in ...
3
votes
1answer
96 views
JavaScript contracts and assertions
This has bugged me for a while. I throw an exception on an assertion failure, but this is only helpful if I can actually catch the exception (in which case I alert the user). If I can't catch the ...
1
vote
3answers
130 views
How can I check two Object-Arrays for Equality in JUnit?
I have a JAVA class NoName whose objects have the method getProperties(). This method returns an Array of Property.
When I now have two instances of NoName, how can I use assertEquals to check ...
0
votes
0answers
86 views
Selenium RC Ruby Assert Failures
I don't know how to use Assert in Selenium RC Ruby for the script return/report the number of Failures.
I have below condition, I expect that if "a" is not equal "b", then system will display 1 ...
1
vote
1answer
88 views
Is it possible to use compile time asserts in C++
I want to use a template for some data processing, but I need the code to be more or less safe when ported.
This might be a problem if sizes of variables grow beyond anticipated values, so I would ...
1
vote
1answer
89 views
Groovy Properties Assertion Fails
Here is the content of my groovy file:
def KEY = "a"
Properties myProp = new Properties()
myProp[KEY] = "b"
assert(myProp[KEY] == myProp.getProperty(KEY))
Properties results = new ...
0
votes
0answers
76 views
VERIFY macro on msvc 2010
I want to use verify macro instead of assert but I couldn't find header file. cassert is for assert function. But there is no verify macro inside.
Is there anybody knows ?
0
votes
2answers
525 views
More graceful error handling in C++ library - jsoncpp
I'm not sure if this will be a specific thing with jsoncpp or a general paradigm with how to make a C++ library behave better. Basically I'm getting this trace:
imagegeneratormanager.tsk: ...
2
votes
1answer
62 views
Is there any difference between assert.GreaterOrEqual and Assert.IsTrue in nUnit?
I am making asserts in one test and I want to test in the number of messages sent is >=1
I have two equivalent ways to do it.
1: Assert.IsTrue(messagesSent >= 1);
2: ...
0
votes
1answer
100 views
Guess the right game for a user with prolog
I am trying to make a program where the user answers questions to find a game, but I couldn't understand how to work with lists and assert. I tried another way with procedure pointsystem. The program ...
2
votes
1answer
132 views
C-style assertion handlers
There are several ways to make dynamic checks in complex software:
assert.h implementation assert( expression_that_must_be_true );
Linux kernel style:
if (in_interrupt())
BUG();
If ...
4
votes
1answer
295 views
Assert.AreEqual does not use my .Equals overrides on an IEnumerable implementation
I have a PagedModel class which implements IEnumerable to just return the ModelData, ignoring the paging data. I have also overridden Equals and GetHashCode to allow comparing two PagedModel objects ...
0
votes
3answers
2k views
Java: using a logger in JUnit assert*
What I want to do is something like the following in JUnit:
assertTrue(logger.error("the condition is not true"), <a boolean condition>);
so the error message gets logged by a logger, where ...
1
vote
1answer
255 views
Robotium search edittext for setError
I have a txt.setError text and I want to check is the error appear on screen while on testin My testcase is;
solo.enterText(0, "example");
solo.clickOnImageButton(3);
...
0
votes
1answer
209 views
Assert.AreEqual unit testing for DbContext entities
I wish to unit test my business logic is loading the correct data by loading an entity via the business logic and comparing it to an entity loaded directly from the dbcontext.
Assert.AreEqual fails ...
1
vote
2answers
76 views
How to prevent a part of arbitrary code to be compiled in Python?
According to python documentation assert statements aren't included in code if it is compiled with -O key. I wondering if it is possible to emulate this behavior with any arbitrary piece of code?
For ...
0
votes
1answer
266 views
assert() showing Warning in php 5.3.1
I am using sphinx 0.9.8 version. My php version is 5.3.1. After integrating sphinx api I am getting some warning regarding assert(). How can I fix that issue?
Any body can help me?
Thanks
8
votes
3answers
1k views
1
vote
7answers
1k views
Difference between java ' assert 'and ' if () {} else exit;'
what is the difference between java assert and if () {} else exit;?
can i just use if () {} else exit instead of assert ?
0
votes
3answers
243 views
Asserting Exceptions for Private Methods
I am unit-testing private methods in C# using NUnit.
For example, my method (if public) is expected to throw an ArgumentNullException. I can assert that the method throws an ArgumentNullException ...
3
votes
2answers
234 views
Catching assert() with side effects
We have several moderately sized C code bases that receive commits from developers with a variety of experience levels. Some of the less disciplined programmers commit assert() statements with side ...
1
vote
2answers
496 views
Debug.Assert(false) does not trigger in win8 Metro apps
I notice Debug.Assert does not trigger in Metro apps, however, if the project is a traditional one like Console or WinForm, it does trigger. And yes, I am in Debug mode.
Is it a setting not properly ...
0
votes
2answers
57 views
Why does assert appends a default assertion message
While using asserts for e.g
try{
assert email!=null : "Email is required"
} catch (AssertionError ae) {
System.out.println(ae.getMessage());
}
above prints Email is required. Expression: ...
2
votes
4answers
970 views
Are AssertionErrors forbidden if I want to use JUnit?
I have a method that during a specific point of processing it expects that certain invariants are kept.
To keep this trivial let's say that at point X during the code processing the variable high and ...
1
vote
0answers
24 views
iPhone Unittest with Warning
i have a question..i have write a Unittest for my iPhone App.
Can I manage the UnitTest warning situation?
I wish I had my test complete successfully (but) with a warning
1
vote
1answer
396 views
Prolog - Assert into a new database
:-dynamic listofQuestions/2.
myrule:-
write('P = '), write(Percent), write('-'),write(X),
( listofQuestions(Percent,X) -> true ; assert(listofQuestions(Percent,X)) ),
The code snippet ...
1
vote
3answers
177 views
Supposedly the same entity, but AssertSame fails. Inconsistent data
I have some problems with my DAO implementation. My scenario: I insert one entity in my database, I get this entity twice from my database. I understand difference between AssertSame and AssertEquals. ...
1
vote
2answers
127 views
What is going on with Asserts Equality here?
Found this website to presumably test wannabe developers...
http://www.devchallenge.co.uk/challenge-2
The question is this...
Based on the given code, which of the following tests will return a
...
