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

  • SEARCH
  • Home
  • 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 8772047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:56:38+00:00 2026-06-13T17:56:38+00:00

The assertEquals() fails even though the both the strings are same…can someone help me

  • 0

The assertEquals() fails even though the both the strings are same…can someone help me figure out why?

 public void testSet() 
 {
    ByteArrayOutputStream outContent = new ByteArrayOutputStream();

    System.setOut(new PrintStream(outContent));

    instance.get();

    String output = outContent.toString();
    String input="i=1\r\n";
    assertEquals(input,output);
 }

 get()
 {
    int i=1;
    System.out.println("i="+i);
 }
  • 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-13T17:56:39+00:00Added an answer on June 13, 2026 at 5:56 pm

    You are using newline in your print statement in your get() method which is appending \r\n in the output buffer. This way you are getting `output = “i=1\r\n” which is not equal to “i=1”.

    Use the print without newline i.e. print() as below:

     System.out.print("i="+i);
    

    If you don’t want to use print() method then truncate the \r\n from the output as below:

        String output = outContent.toString();
        output = output.replaceAll("\r\n", "");
        String input="i=1";
        assertEquals(input,output);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can write an assertion message one of two ways. Stating success: assertEquals( objects
I have a method that is producing side effects, even though certain variables are
If I run the following test, it fails: public class CrazyExceptions { private Exception
@Autowired private Validator validator; @Test public void testValidateMethodOfPaymentBadCreditCard() { final MethodOfPayment mop = new
I have the following test: @Test(expected=ArithmeticException.class) public void divideByZero() { int n = 2
This unit test is failing: public void testDigest() throws NoSuchAlgorithmException { String hashExpected =
I have some code in a test as follows: @Test public void testRetrieveMongoDBFailUnkownHost() {
Even though I have got the TestCase class included? <?php require_once(PHPUnit/Autoload.php); require_once(PHPUnit/Framework/TestCase.php); require_once(PHPUnit/Framework/TestSuite.php); class
The following test fails: DateFormat df = new SimpleDateFormat(HH:mm:ss z); assertEquals(00:00:00 GMT, df.format(new Date(0)));
I have a JUnit test that is as follows: @Test public void testToDatabaseString() {

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.