You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
313 B
14 lines
313 B
package storage
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestReplicaPlacemnetSerialDeserial(t *testing.T) {
|
|
rp, _ := NewReplicaPlacementFromString("001")
|
|
new_rp, _ := NewReplicaPlacementFromByte(rp.Byte())
|
|
if rp.String() != new_rp.String() {
|
|
println("expected:", rp.String(), "actual:", new_rp.String())
|
|
t.Fail()
|
|
}
|
|
}
|