Tests are finally also ready

This commit is contained in:
2025-12-11 15:12:21 -07:00
parent 4e6ded0596
commit ad201adade
3 changed files with 919 additions and 0 deletions

View File

@@ -58,3 +58,17 @@ import "himbocrypt/pkg/engine"
e := engine.NewEngine()
```
## Testing
Run the full test suite:
```bash
go test ./pkg/engine/... -v
```
Run benchmarks:
```bash
go test ./pkg/engine/... -bench=. -benchmem
```