Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for notHelper (0.08 sec)

  1. src/testing/helperfuncs_test.go

    // license that can be found in the LICENSE file.
    
    package testing_test
    
    import (
    	"sync"
    	"testing"
    )
    
    // The line numbering of this file is important for TestTBHelper.
    
    func notHelper(t *testing.T, msg string) {
    	t.Error(msg)
    }
    
    func helper(t *testing.T, msg string) {
    	t.Helper()
    	t.Error(msg)
    }
    
    func notHelperCallingHelper(t *testing.T, msg string) {
    	helper(t, msg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top