//! Standalone test server for GWP integration testing.
//!
//! Starts a gRPC server with `MockBackend` on the specified port.
//! Used by all language bindings for integration tests.
//!
//! Usage: `gwp-test-server [PORT]` (default: 50051)
use SocketAddr;
use GqlServer;
use MockBackend;
async