Skip to content

Commit 3994d9d

Browse files
committed
add testdata
1 parent 53f93dc commit 3994d9d

4 files changed

Lines changed: 20 additions & 0 deletions

File tree

β€Žtestdata/main.goβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
fmt.Println("Hello, World!")
7+
}

β€Žtestdata/results.txtβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+--------+-----+-------+
2+
| Title | LOC | Files |
3+
+--------+-----+-------+
4+
| Tests | 6 | 2 |
5+
| Rust | 4 | 1 |
6+
| Go | 8 | 1 |
7+
| Python | 2 | 1 |
8+
| Total | 24 | 4 |
9+
+--------+-----+-------+

β€Žtestdata/tests/main.pyβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello world!")

β€Žtestdata/tests/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)