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 419251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:45:32+00:00 2026-05-12T18:45:32+00:00

I have a little JUnit-Test that export an Object to the FileSystem. In the

  • 0

I have a little JUnit-Test that export an Object to the FileSystem. In the first place my test looked like this

public void exportTest {
   //...creating a list with some objects to export...    
   JAXBService service = new JAXBService();
   service.exportList(list, "output.xml");
}

Usually my test contain a assertion like assertEquals(…). So I changed the code to the following

public void exportCustomerListTest() throws Exception {
    // delete the old resulting file, so we can test for a new one at the end
    File file = new File("output.xml");
    file.delete();

    //...creating a list with some objects to export...

    JAXBService service = new JAXBService();
    service.exportCustomers(list, "output.xml");

    // Test if a file has been created and if it contains some bytes
    FileReader fis = new FileReader("output.xml");
    int firstByte = fis.read();

    assertTrue(firstByte != -1 );
}

Do I need this, or was the first approach enough? I am asking because, the first one is actually just “testing” that the code runs, but not testing any results. Or can I rely on the “contract” that if the export-method runs without an exception the test passes?

Thanks

  • 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-05-12T18:45:33+00:00Added an answer on May 12, 2026 at 6:45 pm

    Well, you’re testing that your code runs to completion without any exceptions – but you’re not testing anything about the output.

    Why not keep a file with the expected output, and compare that with the actual output? Note that this would probably be easier if you had an overload of expertCustomers which took a Writer – then you could pass in a StringWriter and only write to memory. You could test that in several ways, with just a single test of the overload which takes a filename, as that would just create a FileOutputStream wrapped in an OutputStreamWriter and then call the more thoroughly tested method. You’d really just need to check that the right file existed, probably.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a little dilemma that maybe you can help me sort out. I've
I have a little program that I want to make open automatically when my
I have a little routine that's run under Linux and Windows written in C
I have a little logging app (written in wxPython) that receives data from a
I'm wondering if this is possible. I have html like so: <p> <font face=Georgia>
I'm a little shocked that (if?) this precise questions hasn't been asked, but 15
Okay since I have little experience with this stuff and the Facebook documentation is
I have little knowledge of Flash but for a little Flash game I have
i have little problem with boost::asio library. My app receive and process data asynchronously,
I've been using python for years, but I have little experience with python web

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.