The GET one is the request that is being generated when you invoke the method on the mocked API. That request is generated based on the annotations of that method. Your mocked v, though, only has one request configured (the POST one), and since the mock has no mapping for the request that is actually been generated, it fails.
This error either means: * The method in the API does not have the proper annotations and the requests are not being properly generated (which I doubt since you already have the live tests). * You are creating the mocked API (using the `requestSendsResponses` method) but you are not configuring it with the request you expect when calling that API method. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/12#issuecomment-21406779
