TestClientSample.java
691 Bytes
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
package com.dianping.cat.demo;
import org.junit.Test;
import com.dianping.cat.Cat;
public class TestClientSample {
public void testException() {
while (true) {
for (int i = 0; i < 100; i++) {
Cat.logError(new RuntimeException("this is a test"));
}
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
@Test
public void testMetric() {
while (true) {
for (int i = 0; i < 100; i++) {
Cat.logMetricForCount("test");
}
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}