Skip to content

Commit 3950ca0

Browse files
committed
Move Cargo.toml
1 parent 6f270e1 commit 3950ca0

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ members = [
3232
"crates/sats",
3333
"crates/schema",
3434
"crates/smoketests",
35-
"sdks/csharp",
35+
"sdks/csharp/test-harness~",
3636
"sdks/rust",
3737
"sdks/unreal",
3838
"crates/snapshot",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "sdk-csharp-test-harness"
33
version.workspace = true
44
edition.workspace = true
5-
license-file = "LICENSE.txt"
5+
license-file = "../../../licenses/apache2.txt"
66
description = "A C# SDK test harness for SpacetimeDB clients"
77

88
[[test]]
99
name = "sdk_csharp"
10-
path = "test-harness~/sdk_csharp.rs"
10+
path = "sdk_csharp.rs"
1111

1212
[dev-dependencies]
13-
spacetimedb-testing = { path = "../../crates/testing" }
13+
spacetimedb-testing = { path = "../../../crates/testing" }
1414
serial_test.workspace = true
1515

1616
[lints]

sdks/csharp/test-harness~/sdk_csharp.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ use std::panic::{catch_unwind, take_hook, AssertUnwindSafe};
33
use serial_test::serial;
44
use spacetimedb_testing::sdk::Test;
55

6-
const TEST_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test-harness~/sdk-test-client");
7-
const CONNECT_DISCONNECT_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test-harness~/connect-disconnect-client");
8-
const PROCEDURE_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test-harness~/procedure-client");
9-
const VIEW_PK_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test-harness~/view-pk-client");
10-
const PROCEDURAL_VIEW_PK_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test-harness~/procedural-view-pk-client");
6+
const TEST_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/sdk-test-client");
7+
const CONNECT_DISCONNECT_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/connect-disconnect-client");
8+
const PROCEDURE_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/procedure-client");
9+
const VIEW_PK_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/view-pk-client");
10+
const PROCEDURAL_VIEW_PK_CLIENT: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/procedural-view-pk-client");
1111

1212
fn make_test(subcommand: &str) -> Test {
1313
Test::builder()

0 commit comments

Comments
 (0)