Web Server Testing
To test a server you need a client, send a request to server and test the behavour.
A simple client test gives you a good starting point for your own tests.
Simple Client
CLIENT
_REQ yourhost 8080
__GET /foo/bar HTTP/1.1
__Host: yourhost:8080
__
_EXPECT . "200 OK"
_WAIT
END