proof of concept Blackbox TestSuite using httpful to call Bookmark API Controller and test for expected responses; cleanup old phpunit testing attempt relics; WIP enhancing the script/helper functions further;

This commit is contained in:
Johann Hoffmann
2025-07-14 15:44:27 +02:00
parent f888dcc72d
commit ffaf360ea0
10 changed files with 261 additions and 428 deletions
@@ -272,23 +272,5 @@ class Bookmark extends FHCAPI_Controller
$this->terminateWithSuccess($update_result);
}
/**
* @SWG\Get(
* path="/test_true",
* security={{"basicAuth":{}}},
* tags={"bookmarks"},
* summary="Test endpoint",
* description="Simple test endpoint that returns 'expected response'.",
* @SWG\Response(
* response=200,
* description="Expected response"
* )
* )
*/
public function test_true()
{
echo "expected response";
}
}