forked from StrafesNET/strafe-project
add integration testing
This commit is contained in:
parent
2eaddd493d
commit
6f739dba8d
9
Cargo.lock
generated
9
Cargo.lock
generated
@ -965,6 +965,15 @@ dependencies = [
|
|||||||
"hashbrown",
|
"hashbrown",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "integration-testing"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"strafesnet_common",
|
||||||
|
"strafesnet_physics",
|
||||||
|
"strafesnet_snf",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itertools"
|
name = "itertools"
|
||||||
version = "0.13.0"
|
version = "0.13.0"
|
||||||
|
@ -4,6 +4,7 @@ members = [
|
|||||||
"engine/physics",
|
"engine/physics",
|
||||||
"engine/session",
|
"engine/session",
|
||||||
"engine/settings",
|
"engine/settings",
|
||||||
|
"integration-testing",
|
||||||
"lib/bsp_loader",
|
"lib/bsp_loader",
|
||||||
"lib/common",
|
"lib/common",
|
||||||
"lib/deferred_loader",
|
"lib/deferred_loader",
|
||||||
|
9
integration-testing/Cargo.toml
Normal file
9
integration-testing/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[package]
|
||||||
|
name = "integration-testing"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
strafesnet_common = { version = "0.5.2", path = "../lib/common", registry = "strafesnet" }
|
||||||
|
strafesnet_physics = { version = "0.1.0", path = "../engine/physics", registry = "strafesnet" }
|
||||||
|
strafesnet_snf = { path = "../lib/snf", registry = "strafesnet" }
|
@ -6,9 +6,6 @@ mod compat_worker;
|
|||||||
mod physics_worker;
|
mod physics_worker;
|
||||||
mod graphics_worker;
|
mod graphics_worker;
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
|
|
||||||
const TITLE:&'static str=concat!("Strafe Client v",env!("CARGO_PKG_VERSION"));
|
const TITLE:&'static str=concat!("Strafe Client v",env!("CARGO_PKG_VERSION"));
|
||||||
|
|
||||||
fn main(){
|
fn main(){
|
||||||
|
@ -1 +0,0 @@
|
|||||||
mod replay;
|
|
Loading…
x
Reference in New Issue
Block a user