Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSecondsToUTCAndBack (0.25 sec)

  1. src/time/time_test.go

    		}
    		if !same(tm, golden) {
    			t.Errorf("NanosecondsToLocalTime(%d):", nsec)
    			t.Errorf("  want=%+v", *golden)
    			t.Errorf("  have=%+v", tm.Format(RFC3339+" MST"))
    		}
    	}
    }
    
    func TestSecondsToUTCAndBack(t *testing.T) {
    	f := func(sec int64) bool { return Unix(sec, 0).UTC().Unix() == sec }
    	f32 := func(sec int32) bool { return f(int64(sec)) }
    	cfg := &quick.Config{MaxCount: 10000}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top