blob: 9d3ebc59c7c7c4efcda2618c9e42af94c343d95b [file] [log] [blame]
Stephane Barbarie4a2564d2018-07-26 11:02:58 -04001package model
2
3import (
4 "github.com/opencord/voltha/protos/go/voltha"
5 "testing"
6)
7
8func Test_Revision_01_New(t *testing.T) {
9 branch := &Branch{}
10 data := &voltha.Device{}
11 children := make(map[string][]*Revision)
12 rev := NewRevision(branch, data, children)
13
14 t.Logf("New revision created: %+v\n", rev)
15}