about summary refs log tree commit diff
path: root/metrics_test.go
blob: 3e6a1417b6a6f3160649b6f918ea9d4f17d43942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package main

import "testing"

func Test_initMetricPusher(t *testing.T) {
	tests := []struct {
		name string
	}{
		// TODO: Add test cases.
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			initMetricPusher()
		})
	}
}

func Test_metricsPusher(t *testing.T) {
	type args struct {
		metricsBundlerURL  string
		metricsPusherDelay int64
	}
	tests := []struct {
		name string
		args args
	}{
		// TODO: Add test cases.
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			metricsPusher(tt.args.metricsBundlerURL, tt.args.metricsPusherDelay)
		})
	}
}