Rene Nochebuena a7c6a85084
All checks were successful
Go CI/CD / go-ci (push) Successful in 10m8s
Go CI/CD / go-ci (pull_request) Successful in 10m12s
Refactor test binary location and update sonar exclusions
Moved the test binary from "tests" to "testbin" for better organization. Updated `sonar-project.properties` to exclude the new directory from analysis and adjusted test references accordingly.
2025-04-10 10:57:51 -06:00

15 lines
227 B
Go

package main
import (
"os"
"gitstormr.dev/stone-utils/stonelog"
)
func main() {
if os.Getenv("TEST_FATAL") == "1" {
stonelog.InitStoneLog(stonelog.TRACE, false, false)
stonelog.Meltdown("A fatal error occurred")
}
}