Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created December 15, 2020 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/15a9900d692be646ba1a201394da7060 to your computer and use it in GitHub Desktop.
Save jasongorman/15a9900d692be646ba1a201394da7060 to your computer and use it in GitHub Desktop.
package com.guitarshack.unittests;
import com.guitarshack.net.Network;
import com.guitarshack.SalesDataTestBase;
public class SalesDataUnitTest extends SalesDataTestBase {
@Override
protected Network getNetwork() {
return request -> "{\"productID\":811,\"startDate\":\"7/17/2019\",\"endDate\":\"7/27/2019\",\"total\":31}";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment