Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
To test GUI to external progam so when I say hey send this request to the program the program sets the request flags to true. On Thu, Dec 11, 2014 at 12:39 PM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 12/11/14 12:16 PM, Jason Ricles wrote: >

Re: unit testing on tomcat with java

2014-12-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jason, On 12/11/14 12:16 PM, Jason Ricles wrote: > No no, it goes Website (GUI) > ws server --> external java > program Okay, and your unit test is going to test which interaction? From GUI to ws server, or from ws server (really a servlet)

Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
No no, it goes Website (GUI) > ws server --> external java program On Thu, Dec 11, 2014 at 11:25 AM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 12/11/14 10:03 AM, Jason Ricles wrote: >> To the question, the external program is sending

Re: unit testing on tomcat with java

2014-12-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jason, On 12/11/14 10:03 AM, Jason Ricles wrote: > To the question, the external program is sending messages to the > webpage through the websocket server on the page. Where as the > webpage is the gui and the external java program is the guts of t

Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
To the question, the external program is sending messages to the webpage through the websocket server on the page. Where as the webpage is the gui and the external java program is the guts of the gui which does what you want when a button is pressed on the gui. On Thu, Dec 11, 2014 at 9:35 AM, Chr

Re: unit testing on tomcat with java

2014-12-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jason, On 12/11/14 9:07 AM, Jason Ricles wrote: > I am currently using tomcat 7.0.57 to host a website for the > purpose of having a websocket serverdeployed with the page for the > purpose of communicating between an external java program and the >

unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
I am currently using tomcat 7.0.57 to host a website for the purpose of having a websocket serverdeployed with the page for the purpose of communicating between an external java program and the webpage. I would like to write some unit test to test that the integration between the external java prog