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-07-11 12:22:14 +00:00
|
|
|
r.SetTimestamp(123 * nsInMs)
|
|
|
|
require.EqualValues(t, 123*nsInMs, r.Timestamp())
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|