Lines Matching refs:output
29 output []interface{}
41 output: []interface{}{
61 output: []interface{}{
77 output: []interface{}{
94 output: []interface{}{
116 output: []interface{}{
142 output: []interface{}{
168 output: []interface{}{
190 output: []interface{}{
212 output: []interface{}{
240 output: []interface{}{
276 output: []interface{}{
311 output: []interface{}{
340 output: []interface{}{
370 output: []interface{}{
412 output: []interface{}{
444 output: []interface{}{
476 output: []interface{}{
513 output: []interface{}{
554 output: []interface{}{
585 output: []interface{}{
619 output: []interface{}{
649 output: []interface{}{
679 output: []interface{}{
717 output: []interface{}{
747 var output []interface{}
750 output = append(output, CloneProperties(reflect.ValueOf(p)).Interface())
753 for _, p := range testCase.output {
754 output = append(output, CloneEmptyProperties(reflect.ValueOf(p)).Interface())
758 _, errs = UnpackProperties(module.Properties, output...)
773 if len(output) != len(testCase.output) {
775 len(testCase.output), len(output))
778 for i := range output {
779 got := reflect.ValueOf(output[i]).Interface()
780 if !reflect.DeepEqual(got, testCase.output[i]) {
783 t.Errorf(" expected: %+v", testCase.output[i])
796 output []interface{}
806 output: []interface{}{},
818 output: []interface{}{
832 output: []interface{}{
848 output: []interface{}{
865 output: []interface{}{
885 output: []interface{}{
904 output: []interface{}{
920 output: []interface{}{
938 output: []interface{}{
954 output: []interface{}{
986 var output []interface{}
987 for _, p := range testCase.output {
988 output = append(output, CloneEmptyProperties(reflect.ValueOf(p)).Interface())
991 _, errs = UnpackProperties(module.Properties, output...)
1039 var output []interface{}
1041 output = append(output, CloneProperties(reflect.ValueOf(p)).Interface())
1045 _, errs = UnpackProperties(module.Properties, output...)