MCPcopy Create free account
hub / github.com/akash-network/node / TestIntegrationGRPC

Function TestIntegrationGRPC

tests/e2e/grpc_test.go:13–43  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

11)
12
13func TestIntegrationGRPC(t *testing.T) {
14 dg := &deploymentGRPCRestTestSuite{}
15 dg.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, dg)
16
17 cg := &certsGRPCRestTestSuite{}
18 cg.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, cg)
19
20 mg := &marketGRPCRestTestSuite{}
21 mg.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, mg)
22
23 pg := &providerGRPCRestTestSuite{}
24 pg.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, pg)
25
26 og := &oracleGRPCRestTestSuite{}
27 og.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, og)
28
29 // Contract deployment test suite with custom config for short governance voting period
30 poc := &priceOracleContractTestSuite{}
31 poc.NetworkTestSuite = testutil.NewNetworkTestSuite(NetworkConfig(), poc)
32
33 bg := &bmeGRPCRestTestSuite{}
34 bg.NetworkTestSuite = testutil.NewNetworkTestSuite(nil, bg)
35
36 suite.Run(t, dg)
37 suite.Run(t, cg)
38 suite.Run(t, mg)
39 suite.Run(t, pg)
40 suite.Run(t, og)
41 suite.Run(t, poc)
42 suite.Run(t, bg)
43}

Callers

nothing calls this directly

Calls 3

NewNetworkTestSuiteFunction · 0.92
NetworkConfigFunction · 0.85
RunMethod · 0.65

Tested by

no test coverage detected