Skip to content

Instantly share code, notes, and snippets.

@minisu
Created April 22, 2014 18:04
Show Gist options
  • Save minisu/11188726 to your computer and use it in GitHub Desktop.
Save minisu/11188726 to your computer and use it in GitHub Desktop.
class TestRunResource
{
private final TestQueue testQueue;
private final TestStorage testStorage;
public void stopTestRun( @Auth User user, @PathParam( "id" ) String testId )
{
TestRun test = getTestRun( user, testId ); // gets testrun from testStorage
testQueue.abort( test );
test.abort();
testStorage.save( test );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment