From 36a0805cfea6cdc8735ac55764ffbdcce35544bb Mon Sep 17 00:00:00 2001 From: Slavomir Date: Fri, 9 Jul 2021 18:45:20 +0200 Subject: [PATCH] Add TODOs to tests --- rpc/client_test.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/rpc/client_test.go b/rpc/client_test.go index ec75049..06b78ff 100644 --- a/rpc/client_test.go +++ b/rpc/client_test.go @@ -2184,3 +2184,27 @@ func TestClient_RequestAirdrop(t *testing.T) { assert.Equal(t, expected, got, "both deserialized values must be equal") } + +func TestClient_GetStakeActivation(t *testing.T) { + // TODO +} + +func TestClient_GetTokenAccountBalance(t *testing.T) { + // TODO +} + +func TestClient_GetTokenAccountsByDelegate(t *testing.T) { + // TODO +} + +func TestClient_GetTokenAccountsByOwner(t *testing.T) { + // TODO +} + +func TestClient_SendTransaction(t *testing.T) { + // TODO +} + +func TestClient_SimulateTransaction(t *testing.T) { + // TODO +}