(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func TestGetNonce(t *testing.T) { |
| 38 | nonce1 := GetNonce() |
| 39 | nonce2 := GetNonce() |
| 40 | assert.NotEqual(t, nonce1, nonce2) |
| 41 | } |
| 42 | |
| 43 | func TestFileExisted(t *testing.T) { |
| 44 | assert.True(t, FileExisted("common_test.go")) |
nothing calls this directly
no test coverage detected