import ( "github.com/rafrombrc/gospec/src/gospec" "testing" ) func TestMyFunction(t *testing.T) { c := gospec.NewContext(t) // Perform some logic... result := 2 + 2 // Use Expect to validate the result c.Expect(result, gospec.Equals, 4) // Output any errors c.ReportError(t) }In this example, we create a new test context using "gospec.NewContext(t)", and then perform some logic (in this case, a simple addition operation). We then use the "Expect" function to assert that the result of the operation equals 4. Finally, we call "c.ReportError(t)" to output any errors that occurred during the test. Overall, the "Context" sub-package of the "github.com/rafrombrc/gospec/src/gospec" package provides a useful way to manage test context and perform assertions on test results in a structured and easy-to-read way.