Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8558597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:50:55+00:00 2026-06-11T15:50:55+00:00

I just noticed that jUnit 4.8.1 does not include support for testing two boolean

  • 0

I just noticed that jUnit 4.8.1 does not include support for testing two boolean arrays for equality. There are tons of other assertArrayEquals but none to take in two boolean arrays.

Is there a proper way to do this? My current thinking is that I’d have to iterate over an array and use something like

Assert.assertTrue(arrayOne[i] == arrayTwo[i]);

Is there a cleaner way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:50:56+00:00Added an answer on June 11, 2026 at 3:50 pm

    You can use Arrays.equals() to compare the two arrays, then assert that they are equivalent.

    Assert.assertTrue(Arrays.equals(arrayOne, arrayTwo));
    

    Arrays.equals() checks the length and each element in the array, so you won’t have to worry about iterating over each array.

    There is also Assert.assertArrayEquals, which will give you the exact position that the arrays differed at.

    Example: for a test written as such:

    @Test
    public void doArrayTest() {
        int[] foo = {1, 2, 3};
        int[] bar = {4, 5, 6};
        assertArrayEquals(foo, bar);
    }
    

    The result would be:

    arrays first differed at element [0]; expected:<1> but was:<4>
    
    Expected :1
    Actual   :4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just noticed that moving the mouse cursor across a tooltip does not seem
I just noticed that java.beans.Introspector getBeanInfo does not pickup any superinterface's properties. Example: public
I have just noticed that my ViewController does not call init (See below) when
I just noticed that my old codes written in python 2.5 does not work
I just noticed that say http://s7.addthis.com/js/250/addthis_widget.js#pub=PUBID does the equivalent of http://s7.addthis.com/js/250/addthis_widget.js?pub=fct-250 but is much
I've just noticed that Webkit now has some support regarding the CSS Values and
I just noticed that there's no version argument to R 's require() or library()
I just noticed that there is no prototype property on strings in JavaScript .
I just noticed that WPF textboxes bound to numeric data do not fire Property
I just noticed that declaring two empty lists as: list1 = list2 = []

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.