Restored progress
This commit is contained in:
parent
f615cff76d
commit
5244f87411
19 changed files with 1061 additions and 0 deletions
26
tests/tests.go
Normal file
26
tests/tests.go
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue