* Time: 12:54:48 AM
* To change this template use File | Settings | File Templates.
*/
public class ebayServerTest extends TestCase {
public void testExtractIdentifierFromURLString() throws Exception {
AuctionServer ebay = new ebayServer();
String id = ebay.extractIdentifierFromURLString("http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=220594110651");
assertEquals("220594110651", id);
id = ebay.extractIdentifierFromURLString("http://cgi.ebay.com/Panasonic-Lumix-20mm-/220594110651?cmd=ViewItem&pt=Camera_Lenses&hash=item335c6f00bb");
assertEquals("220594110651", id);
id = ebay.extractIdentifierFromURLString("http://cgi.ebay.com/220594110651");
assertEquals("220594110651", id);
}