26 lines
357 B
Go
26 lines
357 B
Go
package tests
|
|
|
|
import (
|
|
// "testing"
|
|
"cosync/internal/client"
|
|
"cosync/internal/server"
|
|
)
|
|
|
|
func TestAll() bool {
|
|
TestClientServerCommunication()
|
|
return false
|
|
}
|
|
|
|
func TestClientServerCommunication() bool {
|
|
go client.Run()
|
|
go server.Run()
|
|
return false
|
|
}
|
|
|
|
func TestConfigLoading() bool {
|
|
return false
|
|
}
|
|
|
|
func TestConfigCreation() bool {
|
|
return false
|
|
} |