Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findGroup (0.18 sec)

  1. src/log/slog/value_test.go

    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    func TestKindString(t *testing.T) {
    	if got, want := KindGroup.String(), "Group"; got != want {
    		t.Errorf("got %q, want %q", got, want)
    	}
    }
    
    func TestValueEqual(t *testing.T) {
    	var x, y int
    	vals := []Value{
    		{},
    		Int64Value(1),
    		Int64Value(2),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top