• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Any example for JUnit testing with RMI application?

 
Ranch Hand
Posts: 451
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to write a Junit testing to test the clients' sides application when the multiple clients connecting to the single server via RMI.

Is there any code example?

I tried to develop a unit test when 2 clients connecting to a server. The server is a DVD rental application. The clients are renting DVD's. The server is manually started before the test is run.
Before the test, the DVD the clients will rent has 6 copies. No matter how many times tests are run, the DVD still has 6 copies.
I expect the result should be 4 copies after the first execution.


I guess the clients are not talking to the server during the test.
The sampleproject.db comes from from Monkhouse's SCJD exam guide.

 
reply
    Bookmark Topic Watch Topic
  • New Topic