aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/aws/smithy-go/properties_test.go
blob: 93637c3b18acb5c9da4e5fef9ca7638acee3c00d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package smithy

import "testing"

func TestProperties(t *testing.T) {
	original := map[interface{}]interface{}{
		"abc": 123,
		"efg": "hij",
	}

	var m Properties
	for k, v := range original {
		m.Set(k, v)
	}
	for k, v := range original {
		if m.Get(k) != v {
			t.Errorf("expect key / value properties to be equivalent: %v / %v", k, v)
		}
	}
}