2024-07-25 14:46:20 +02:00
|
|
|
use test_log::test; // set the log level with an envvar: `RUST_LOG=trace cargo test`
|
|
|
|
|
2024-07-23 11:22:50 +02:00
|
|
|
use wordle_analyzer::solve::{AnyBuiltinSolver, NaiveSolver, Solver, StupidSolver};
|
|
|
|
use wordle_analyzer::wlist::builtin::BuiltinWList;
|
|
|
|
use wordle_analyzer::wlist::WordList;
|
|
|
|
|
|
|
|
fn wordlist() -> impl WordList {
|
|
|
|
BuiltinWList::default()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_build_builtin_solvers() {
|
|
|
|
let wl = wordlist();
|
2024-07-24 12:00:43 +02:00
|
|
|
let _stupid_solver =
|
2024-07-23 11:22:50 +02:00
|
|
|
AnyBuiltinSolver::Stupid(StupidSolver::build(&wl).expect("could not build naive solver"));
|
2024-07-24 12:00:43 +02:00
|
|
|
let _naive_solver =
|
2024-07-23 11:22:50 +02:00
|
|
|
AnyBuiltinSolver::Naive(NaiveSolver::build(&wl).expect("could not build naive solver"));
|
|
|
|
}
|