runAllTests static method

Future<void> runAllTests()

Run all tests

Implementation

static Future<void> runAllTests() async {
  GtdLogger.i('=== Starting API Tests ===');

  try {
    GtdLogger.i('--- Testing GET Request ---');
    await testGetRequest();

    GtdLogger.i('--- Testing File Upload ---');
    await testFileUpload();

    GtdLogger.i('=== All Tests Completed Successfully ===');
  } catch (e) {
    GtdLogger.e('=== Test Failed: $e ===');
  }
}