package gotest
import (
"encoding/json"
"fmt"
"reflect"
"strconv"
"testing"
)
func
FormatString(iface
interface{})
string {
switch
val := iface.(type) {
case []
byte:
return
string(val)
}
v := reflect.
ValueOf(iface)
switch v.
Kind() {
case :
return
""