mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
17 lines
208 B
Go
17 lines
208 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestAppSettings(t *testing.T) {
|
|
var a AppSettings
|
|
data, err := json.Marshal(a)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Printf(string(data))
|
|
}
|