added tests for model_learning_costs

lets see how goo they are
This commit is contained in:
2025-08-30 08:59:45 +02:00
parent cb6a5ab5e6
commit a842c8b682
2 changed files with 940 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Run go Tests
## Benchmarks
### Run all benchmarks
go test -bench=. -benchmem ./models
### Run specific category
go test -bench=BenchmarkSource -benchmem ./models
### Run lightweight benchmarks only
go test -bench=BenchmarkSimple -benchmem ./models
### Run parallel benchmarks
go test -bench=Parallel -benchmem ./models