mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
22 lines
566 B
Go
22 lines
566 B
Go
package memory
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TwiN/gatus/v5/core"
|
|
"github.com/TwiN/gatus/v5/storage/store/common"
|
|
"github.com/TwiN/gatus/v5/storage/store/common/paging"
|
|
)
|
|
|
|
func BenchmarkShallowCopyEndpointStatus(b *testing.B) {
|
|
endpoint := &testEndpoint
|
|
status := core.NewEndpointStatus(endpoint.Group, endpoint.Name)
|
|
for i := 0; i < common.MaximumNumberOfResults; i++ {
|
|
AddResult(status, &testSuccessfulResult)
|
|
}
|
|
for n := 0; n < b.N; n++ {
|
|
ShallowCopyEndpointStatus(status, paging.NewEndpointStatusParams().WithResults(1, 20))
|
|
}
|
|
b.ReportAllocs()
|
|
}
|