aboutsummaryrefslogtreecommitdiffstats
path: root/tests/schema_tests.rs
diff options
context:
space:
mode:
authoralpaylan2021-04-14 01:39:29 +0300
committeralpaylan2021-04-14 01:39:29 +0300
commitfe2cd485ffed31e25d30a378dd20cba11b13dfbf (patch)
treec8bd50df7a41dac1512b44d85491d6ebcfbc3808 /tests/schema_tests.rs
parent98987f48e47bf73d6fe1766ff29d94d1825d472b (diff)
downloadgradecoin-fe2cd485ffed31e25d30a378dd20cba11b13dfbf.tar.gz
gradecoin-fe2cd485ffed31e25d30a378dd20cba11b13dfbf.tar.bz2
gradecoin-fe2cd485ffed31e25d30a378dd20cba11b13dfbf.zip
test functions are generated.
Diffstat (limited to 'tests/schema_tests.rs')
-rw-r--r--tests/schema_tests.rs97
1 files changed, 97 insertions, 0 deletions
diff --git a/tests/schema_tests.rs b/tests/schema_tests.rs
new file mode 100644
index 0000000..5c28aed
--- /dev/null
+++ b/tests/schema_tests.rs
@@ -0,0 +1,97 @@
1#[cfg(test)]
2mod tests {
3
4 #[test]
5 fn claims_serialize_correctly() {
6
7 }
8
9 #[test]
10 fn claims_deserialize_correctly() {
11
12 }
13
14 #[test]
15 fn transaction_serialize_correctly() {
16
17 }
18
19 #[test]
20 fn transaction_deserialize_correctly() {
21
22 }
23
24 #[test]
25 fn block_serialize_correctly() {
26
27 }
28
29 #[test]
30 fn block_deserialize_correctly() {
31
32 }
33
34 #[test]
35 fn block_deserialize_when_vec_emptpy() {
36
37 }
38
39 #[test]
40 fn naked_block_serialize_correctly() {
41
42 }
43
44 #[test]
45 fn naked_block_deserialize_correctly() {
46
47 }
48
49 #[test]
50 fn naked_block_deserialize_when_vec_emptpy() {
51
52 }
53
54 #[test]
55 fn user_serialize_correctly() {
56
57 }
58
59 #[test]
60 fn user_deserialize_correctly() {
61
62 }
63
64 #[test]
65 fn metu_id_serialize_correctly() {
66
67 }
68
69 #[test]
70 fn metu_id_deserialize_correctly() {
71
72 }
73
74 #[test]
75 fn auth_request_serialize_correctly() {
76
77 }
78
79 #[test]
80 fn auth_request_deserialize_correctly() {
81
82 }
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97} \ No newline at end of file