Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 840 for TT (0.04 sec)

  1. pkg/util/strcase/camelcase_test.go

    			args: args{
    				n:   "foobar",
    				sep: "",
    			},
    			want: "FOOBAR",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := CamelCaseWithSeparator(tt.args.n, tt.args.sep); got != tt.want {
    				t.Errorf("CamelCaseWithSeparator() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_isWordSeparator(t *testing.T) {
    	tests := []struct {
    		name string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/go/build/constraint/expr_test.go

    }
    
    func TestParse(t *testing.T) {
    	for i, tt := range constraintTests {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    			x, err := Parse(tt.in)
    			if err != nil {
    				if tt.err == "" {
    					t.Errorf("Constraint(%q): unexpected error: %v", tt.in, err)
    				} else if !strings.Contains(err.Error(), tt.err) {
    					t.Errorf("Constraint(%q): error %v, want %v", tt.in, err, tt.err)
    				}
    				return
    			}
    			if tt.err != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 18 22:36:55 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. src/reflect/type_test.go

    			x int32
    			y int16
    		}{})}, false},
    		{"struct {_ int32 }", args{reflect.TypeOf(struct{ _ int32 }{})}, false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := reflect.IsRegularMemory(tt.args.t); got != tt.want {
    				t.Errorf("isRegularMemory() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    var sinkType reflect.Type
    
    func BenchmarkTypeForString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/configdump_test.go

    			wantErr:     true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cw := &ConfigWriter{}
    			cd, _ := os.ReadFile(tt.inputFile)
    			err := cw.Prime(cd)
    			if cw.configDump == nil {
    				if tt.wantConfigs != 0 {
    					t.Errorf("wanted some configs loaded but config dump was nil")
    				}
    			} else if len(cw.configDump.Configs) != tt.wantConfigs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/str/str_test.go

    	} {
    		got := TrimFilePathPrefix(tt.s, tt.prefix)
    		if got == tt.want {
    			t.Logf("TrimFilePathPrefix(%q, %q) = %q", tt.s, tt.prefix, got)
    		} else {
    			t.Errorf("TrimFilePathPrefix(%q, %q) = %q, want %q", tt.s, tt.prefix, got, tt.want)
    		}
    
    		if HasFilePathPrefix(tt.s, tt.prefix) {
    			joined := filepath.Join(tt.prefix, got)
    			if clean := filepath.Clean(tt.s); joined != clean {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/net/ip_test.go

    }
    
    func TestIPAddrScope(t *testing.T) {
    	for _, tt := range ipAddrScopeTests {
    		if ok := tt.scope(tt.in); ok != tt.ok {
    			t.Errorf("%s(%q) = %v, want %v", name(tt.scope), tt.in, ok, tt.ok)
    		}
    		ip := tt.in.To4()
    		if ip == nil {
    			continue
    		}
    		if ok := tt.scope(ip); ok != tt.ok {
    			t.Errorf("%s(%q) = %v, want %v", name(tt.scope), ip, ok, tt.ok)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/net/http/internal/ascii/print_test.go

    			a:    "chunKed", // This "K" is 'KELVIN SIGN' (\u212A)
    			b:    "chunked",
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := EqualFold(tt.a, tt.b); got != tt.want {
    				t.Errorf("AsciiEqualFold(%q,%q): got %v want %v", tt.a, tt.b, got, tt.want)
    			}
    		})
    	}
    }
    
    func TestIsPrint(t *testing.T) {
    	var tests = []struct {
    		name string
    		in   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/xcoff/ar_test.go

    	for i := range archTest {
    		tt := &archTest[i]
    		arch, err := OpenArchive(tt.file)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if !reflect.DeepEqual(arch.ArchiveHeader, tt.hdr) {
    			t.Errorf("open archive %s:\n\thave %#v\n\twant %#v\n", tt.file, arch.ArchiveHeader, tt.hdr)
    			continue
    		}
    
    		for i, mem := range arch.Members {
    			if i >= len(tt.members) {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 22:19:22 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/endpoint_test.go

    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			gotOut := &bytes.Buffer{}
    			cw := &ConfigWriter{Stdout: gotOut}
    			cd, _ := os.ReadFile("testdata/endpoint/configdump.json")
    			cw.Prime(cd)
    			err := cw.PrintEndpointsSummary(tt.filter)
    			assert.NoError(t, err)
    
    			wantOutputFile := path.Join("testdata/endpoint", fmt.Sprintf("%s_output.txt", tt.name))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    						}
    					} else if tt.gomodErr != "" {
    						t.Errorf("repo.GoMod(%q) = %q, want error %q", tt.version, data, tt.gomodErr)
    					} else if string(data) != tt.gomod {
    						t.Errorf("repo.GoMod(%q) = %q, want %q", tt.version, data, tt.gomod)
    					}
    				}
    
    				needHash := !testing.Short() && (tt.zipFileHash != "" || tt.zipSum != "")
    				if tt.zip != nil || tt.zipErr != "" || needHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top