use fuzz_accounts::*;
use trident_fuzz::fuzzing::*;
mod fuzz_accounts;
mod types;
use types::*;
#[derive(FuzzTestMethods)]
struct FuzzTest {
trident: Trident,
fuzz_accounts: AccountAddresses,
}
#[flow_executor]
impl FuzzTest {
fn new() -> Self {
Self {
trident: Trident::default(),
fuzz_accounts: AccountAddresses::default(),
}
}
#[init]
fn start(&mut self) {
}
#[flow]
fn flow1(&mut self) {
}
#[flow]
fn flow2(&mut self) {
}
#[end]
fn end(&mut self) {
}
}
fn main() {
FuzzTest::fuzz(1000, 100);
}