Tagged Questions
5
votes
1answer
95 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
1answer
274 views
JUnit assertTrue exception
I am trying to use JUnit 4.0 to test if an application is returning the expected output on a boolean method.
Test is similar to following:
import org.junit.Test;
import static org.junit.Assert.*;
...
0
votes
1answer
42 views
Firing function on assert failure
I am working on complicated code generation using CodeModel available in Java. I have managed to setup my unit tests in such a way so that a test generates small but functionally complete Java code ...
0
votes
1answer
102 views
JUnit JavaBean assert not null deep
How can a JavaBean be tested for deep not null?
I have a JavaBean with about 400 properties. MyBatis fetches the data from a database and uses a Result Map to initialize the JavaBean. What I'm ...
2
votes
5answers
137 views
do assertations exist in both JAVA and JUnit?
I am looking at one of the question that is posted long back by x person.
Ex: assertEquals(driver.getPageSource().contains("sometext"), true);
(or) assertEquals(boolean , boolean);
If the above ...
1
vote
1answer
140 views
how to assert true for two different values in a for loop?
I've data in mongo which I need to validate:
"items" : [
{
"item" : 0,
},
{
"item" : 1,
}
],
There's a ...
1
vote
3answers
133 views
assert(false) does not stop execution
In one of my JUnit test, I'm initializing an object:
MyObject myObject = new MyObject(220, 120, 0.05, true);
The constructor's signature is:
public MyObject(int minLength, int maxLength,
...
1
vote
1answer
44 views
How to retrieve number of components added to JMenu?
I've done a small test and in the second test I get an assertion error (0 instead of 1):
package tests;
import static org.junit.Assert.*;
import org.junit.Test;
import javax.swing.*;
public class ...
0
votes
1answer
75 views
Can a JUnit test resolve from a object returning a Assertion?
Can a JUnit test resolve from a object returning a Assertion?
For example, if I have a test that looks like this, would this work?
@Test
public void testCase1() {
TestObject to = new ...
1
vote
1answer
84 views
Save assert stack trace to a file
I have an Android Test Application in which I run several tests.
I use various assert calls such as assertEquals, assertTrue, assertNull and so on. When such an assert fails, I wish to save the stack ...
0
votes
1answer
242 views
enabling assertions in ant
I want to enable the assertion facility in ant. In my ant build.xml, I put the follows, trying to enable assertions.
<project> ...
<assertions>
<enable/>
</assertions>
...
1
vote
1answer
94 views
Is it ok to use assertTrue on float and double values in JUnit?
I tried using the assertEquals method on a float and eclipse says that the method was depreciated. Therefore, is the following alternative acceptable?
Assert.assertTrue("Total does not match expected ...
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 ...
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
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 ...
2
votes
4answers
956 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
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. ...
0
votes
1answer
163 views
How to disable Android assert (with Eclipse on Windows)
How can I disable assert checks on Windows through Eclipse?
I have tried using
-assumenosideeffects junit.framework.Assert {
*;
}
but the aseert check still runs.
I have seen adb shell setprop ...
1
vote
2answers
69 views
Compare strings that can come in a different internal order
I'm writing a JUnit test that check messages (one message per line) inside one unified String. The format is as follows:
[* Message for Alice *]
Hey, first message
Second message
[* ...
2
votes
7answers
368 views
Asserting a collection has multiple instances of an item in Java?
The answer to this old question recommends Hamcrest for asserting on collections.
What happens if I want to assert a collection has multiple instances of an object?
list = newArrayList();
...
0
votes
1answer
111 views
How to obtain the Assert JClass in CodeModel?
The org.junit package defines the Assert class for JUnit testing. How can I retrieve this static class as a JClass in the CodeModel framework?
3
votes
6answers
976 views
How to assert an actual value against 2 or more expected values?
I'm testing a method to see if it returns the correct string. This string is made up of a lot of lines whose order might change, thus usually giving 2 possible combinations. That order is not ...
2
votes
1answer
669 views
How do You Unit Test a Custom Assert?
I'm writing my own JUnit Assert? How do I test it?
I know how to feed it something that will pass and something that will make it fail, but how do I write a JUnit test for those things?
The custom ...
0
votes
4answers
564 views
Appropriate use of assert
Can you please help me better understand, what is an appropriate use of “assert” vs “throwing an exception? When is each scenario appropriate?
Scenario 1
CODE
public Context(Algorythm algo) {
if ...
3
votes
2answers
4k views
Loop through array, each element a JUnit test
I have a JUnit 4 test that loops through an array of test data:
public @Test void testAll() {
final Object[][] sets = new Object[][] {
// SET TYPE VALUE
...
6
votes
4answers
909 views
Is there a way of having something like jUnit Assert message argument in Mockito's verify method?
Let's assume a snippet of testing code:
Observable model = Class.forName(fullyQualifiedMethodName).newInstance();
Observer view = Mockito.mock(Observer.class);
model.addObserver(view);
for (Method ...
2
votes
3answers
239 views
Asserting in the example below
testLogicalDoc = new LogicalDocumentImpl(-4);
assertTrue(testLogicalDoc==null);
In my code above, I have an assert condition with which I want to make sure I don't create my object with negative ...
6
votes
6answers
308 views
JUnit assertion methods should be phrased in the positive or the negative?
Should I be writing
assertTrue("User logged in", user.isLoggedIn());
or
assertTrue("User is not logged in", user.isLoggedIn());
The former provides better reading inside the source files:
"I assert ...
0
votes
0answers
323 views
dbunit assertion not throwing failure properly
Following is a test case which tests the working of org.dbunit.Assertion.assertEquals(ITable a, ITable b)
@Test
public void testAssertion() {
try {
//Creating actual table with 2 columns
...
0
votes
1answer
631 views
Extending Junit4 or test case?
We've got a simple webservice for handling queries about our data. I'd like to make a set of asserts/case extentions that would provide high level methods for testing various aspects of the response. ...
4
votes
7answers
29k views
Java/ JUnit - AssertTrue vs AssertFalse
I'm pretty new to Java and am following the Eclipse Total Beginner's Tutorials. They are all very helpful, but in Lesson 12, he uses assertTrue for one test case and assertFalse for another. Here's ...
25
votes
7answers
8k views
assert vs. JUnit Assertions
Today I saw a JUnit test case with a java assertion instead of the JUnit assertions - What are the best practices in this respect?
8
votes
5answers
399 views
Can I write a test without any assert in it?
I'd like to know if it is "ok" to write a test without any "assert" in it. So the test would fail only when an exception / error has occured.
Eg: like a test which has a simple select query, to ...
4
votes
4answers
3k views
junit assert in thread throws exception
What am I doing wrong that an exception is thrown instead of showing a failure, or should I not have assertions inside threads?
@Test
public void testComplex() throws InterruptedException {
int ...
0
votes
3answers
768 views
Unit Testing AssertError in JUnit
I'm trying to ensure that a parameter can't be null by adding an assert statement at the top of the method.
When unit testing, I'm trying to declare that the AssertError is expected, but it still ...
9
votes
3answers
4k views
Hamcrest equal collections
Is there a matcher in Hamcrest to compare collections for equality?
There is contains and containsInAnyOrder but I need equals not bound to concrete collection type.
E.g. I cannot compare ...
10
votes
6answers
5k views
How to do a junit assert on a message in a logger
I have some code-under-test that calls on a java logger to report its status.
In the junit test code, I would like to verify that the correct log entry was made in this logger. Something along the ...
171
votes
8answers
35k views
Why doesn't JUnit provide assertNotEquals methods?
Does anybody know why JUnit 4 provides assertEquals(foo,bar) but not assertNotEqual(foo,bar) methods?
It provides assertNotSame (corresponding to assertSame) and assertFalse (corresponding to ...
7
votes
4answers
7k views
AssertContains on strings in jUnit
Is there a nicer way to write in jUnit
String x = "foo bar";
Assert.assertTrue(x.contains("foo"));
84
votes
6answers
10k views
differences between 2 JUnit Assert classes
I've noticed that the JUnit framework contains 2 Assert classes (in different packages, obviously) and the methods on each appear to be very similar. Can anybody explain why this is?
The classes I'm ...