mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 07:00:25 +00:00
7066101996
Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
19 lines
230 B
Go
19 lines
230 B
Go
// Copyright (c) Magistrala
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package grpc_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
svc = newService()
|
|
startGRPCServer(svc, port)
|
|
|
|
code := m.Run()
|
|
|
|
os.Exit(code)
|
|
}
|