Coinbase allows you to use a SandBox account where you can trade without real funds. This account requires to create API keys different from production account.
To use the SandBox account, just set Coinbase.SandBox property to true, before do any request to the REST API.
TsgcWSAPI_Coinbase oCoinbase = new TsgcWSAPI_Coinbase(this);
oCoinbase->Coinbase->ApiKey = "your api key";
oCoinbase->Coinbase->ApiSecret = "your api secret";
oCoinbase->Coinbase->SandBox = true;
ShowMessage(oCoinbase->REST_API>ListAccounts);