blob: 9d3ebc59c7c7c4efcda2618c9e42af94c343d95b [file] [log] [blame]
package model
import (
"github.com/opencord/voltha/protos/go/voltha"
"testing"
)
func Test_Revision_01_New(t *testing.T) {
branch := &Branch{}
data := &voltha.Device{}
children := make(map[string][]*Revision)
rev := NewRevision(branch, data, children)
t.Logf("New revision created: %+v\n", rev)
}