Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGetArticleForNoun (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    			arg:  'n',
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    		if got := isVowel(tt.arg); got != tt.want {
    			t.Errorf("%q. IsVowel() = %v, want %v", tt.name, got, tt.want)
    		}
    	}
    }
    
    func TestGetArticleForNoun(t *testing.T) {
    	tests := []struct {
    		noun    string
    		padding string
    		want    string
    	}{
    		{
    			noun:    "Frog",
    			padding: " ",
    			want:    " a ",
    		},
    		{
    			noun:    "frogs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top