@After
  public void tearDown() throws Exception {
    // Clear all the sample data out of our database now that we're done
    // running all the tests.

    String response = TestUtils.removePlayer(1000);
    Assert.assertTrue(response.equals("Player removed with FacbookID: 1000"));
    response = TestUtils.removePlayer(1001);
    Assert.assertTrue(response.equals("Player removed with FacbookID: 1001"));
    response = TestUtils.removePlayer(1004);
    Assert.assertTrue(response.equals("Player removed with FacbookID: 1004"));
    response = TestUtils.removePlayer(1005);
    Assert.assertTrue(response.equals("Player removed with FacbookID: 1005"));
    response = TestUtils.removePlayer(1010);
    Assert.assertTrue(response.equals("Player removed with FacbookID: 1010"));
  }