You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A generic dataplane API for managing VM lifecycle using Cloud Hypervisor with OCI-based workloads. This project provides a clean, REST-ful interface for creating, managing, and orchestrating VMs from container images.
4
6
5
7
## Features
@@ -189,10 +191,18 @@ make generate-all
189
191
190
192
### Testing
191
193
194
+
Run all tests:
192
195
```bash
193
196
make test
194
197
```
195
198
199
+
Run specific package:
200
+
```bash
201
+
go test -v ./cmd/api/api/
202
+
```
203
+
204
+
Tests are handler-level tests that call `ApiService` methods directly (no HTTP server needed).
0 commit comments