Skip to content

Commit f411877

Browse files
authored
Merge pull request #209 from akordavid373/feature/property-based-testing
Feature/property based testing
2 parents df49043 + 2f8ea94 commit f411877

File tree

7 files changed

+1951
-0
lines changed

7 files changed

+1951
-0
lines changed

contracts/teachlink/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ soroban-sdk.workspace = true
1616

1717
[dev-dependencies]
1818
soroban-sdk = { workspace = true, features = ["testutils"] }
19+
proptest = "1.4"
20+
proptest-derive = "0.4"
21+
quickcheck = "1.0"
22+
quickcheck_macros = "1.0"
1923

2024
[lints]
2125
workspace = true

contracts/teachlink/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ mod storage;
128128
mod tokenization;
129129
mod types;
130130
pub mod validation;
131+
pub mod property_based_tests;
131132

132133
pub use crate::types::{
133134
ColorBlindMode, ComponentConfig, DeviceInfo, FeedbackCategory, FocusStyle, FontSize,

0 commit comments

Comments
 (0)