1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Attribute usage examples
tags: [attributes]
#[retry(2)]
#[retry_delay(1.0)]
helloworld.Greeter/SayHello
{
"name": "World"
}
{
"message": "Hello, World!"
}
#[skip]
helloworld.Greeter/SayHello
{
"name": "Skipped"
}
{
"message": "This test is skipped"
}
#[timeout(5)]
#[name("Custom call name")]
helloworld.Greeter/SayHello
{
"name": "With timeout"
}
{
"message": "Hello, With timeout!"
}