Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testdata (0.19 sec)

  1. doc/go_spec.html

    if there is no iteration variable, <code>n</code> must be assignable to <code>int</code>.
    </p>
    
    <pre>
    var testdata *struct {
    	a *[7]int
    }
    for i, _ := range testdata.a {
    	// testdata.a is never evaluated; len(testdata.a) is constant
    	// i ranges from 0 to 6
    	f(i)
    }
    
    var a [10]string
    for i, s := range a {
    	// type of i is int
    	// type of s is string
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    TestSuite(Class[], String); public void addTest(Test); public void addTestSuite(Class); public int countTestCases(); public String getName(); public void run(TestResult); public void runTest(Test, TestResult); public void setName(String); public Test testAt(int); public int testCount(); public java.util.Enumeration tests(); public String toString(); private void addTestMethod(reflect.Method, java.util.List, Class); private boolean isPublicTestMethod(reflect.Method); private boolean isTestMethod(reflect.Method);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top