Skip to content

Commit 2f912f4

Browse files
committed
chore: init e2e test suite
Init a new Rust project to serve as e2e test suite Signed-off-by: Luca Zaninotto <luca.zaninotto@secomind.com>
1 parent f1daf24 commit 2f912f4

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

tools/e2e_test/.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug
4+
target
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk
8+
9+
# MSVC Windows builds of rustc generate these, which store debugging information
10+
*.pdb
11+
12+
# Generated by cargo mutants
13+
# Contains mutation testing data
14+
**/mutants.out*/

tools/e2e_test/Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/e2e_test/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "e2e_test"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]

tools/e2e_test/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)