22 lines
327 B
Go
22 lines
327 B
Go
![]() |
package tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"cosync/internal/client"
|
||
|
"cosync/internal/server"
|
||
|
)
|
||
|
|
||
|
func TestAll(t *testing.T) {
|
||
|
TestClientServerCommunication(t)
|
||
|
}
|
||
|
|
||
|
func TestClientServerCommunication(t *testing.T) {
|
||
|
go client.Run()
|
||
|
go server.Run()
|
||
|
}
|
||
|
|
||
|
func TestConfigLoading(t *testing.T) {
|
||
|
}
|
||
|
|
||
|
func TestConfigCreation(t *testing.T) {
|
||
|
}
|