Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestFromToolchain (0.42 sec)

  1. src/cmd/go/internal/gover/toolchain_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gover
    
    import "testing"
    
    func TestFromToolchain(t *testing.T) { test1(t, fromToolchainTests, "FromToolchain", FromToolchain) }
    
    var fromToolchainTests = []testCase1[string, string]{
    	{"go1.2.3", "1.2.3"},
    	{"1.2.3", ""},
    	{"go1.2.3+bigcorp", ""},
    	{"go1.2.3-bigcorp", "1.2.3"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 550 bytes
    - Viewed (0)
Back to top