2019-11-15 10:32:40 +00:00
|
|
|
package consensus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRecoveryRequest_Setters(t *testing.T) {
|
|
|
|
var r recoveryRequest
|
|
|
|
|
2020-08-09 20:31:34 +00:00
|
|
|
r.SetTimestamp(123 * nanoInSec)
|
|
|
|
require.EqualValues(t, 123*nanoInSec, r.Timestamp())
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|