Web Development
unittest.txt
Associated article: Unit Testing Web Services
Tags: Web Development Tools Design
Published source code accompanying the article by Paul Hamill in which he applies Test-Driven Development to web service code.
Unit Testing Web Services
by Paul Hamill
Listing One
public class MyServiceTest extends TestCase {
public void setUp() {
String URI = "http://localhost:8080/services/MyService";
// ... create service endpoint and connect to URI ...
MyService service = endpoint.getMyService();
}
public void testGetDoc() {
service....


