Skip to content

Commit d2f1cff

Browse files
committed
test logback_1759
Signed-off-by: Ceki Gulcu <[email protected]>
1 parent b4b7b62 commit d2f1cff

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Logback: the reliable, generic, fast and flexible logging framework.
3+
* Copyright (C) 1999-2024, QOS.ch. All rights reserved.
4+
*
5+
* This program and the accompanying materials are dual-licensed under
6+
* either the terms of the Eclipse Public License v1.0 as published by
7+
* the Eclipse Foundation
8+
*
9+
* or (per the licensee's choosing)
10+
*
11+
* under the terms of the GNU Lesser General Public License version 2.1
12+
* as published by the Free Software Foundation.
13+
*/
14+
15+
package ch.qos.logback.core.issue.logback_1759;
16+
17+
import ch.qos.logback.core.ConsoleAppender;
18+
import ch.qos.logback.core.Context;
19+
import ch.qos.logback.core.ContextBase;
20+
import ch.qos.logback.core.encoder.EchoEncoder;
21+
import org.junit.jupiter.api.BeforeEach;
22+
import org.junit.jupiter.api.Test;
23+
24+
public class Logback1759Test {
25+
26+
Context context = new ContextBase();
27+
EchoEncoder echoEncoder = new EchoEncoder();
28+
ConsoleAppender consoleAppender = new ConsoleAppender();
29+
30+
@BeforeEach
31+
public void setup() {
32+
consoleAppender.setContext(context);
33+
echoEncoder.setContext(context);
34+
echoEncoder.start();
35+
consoleAppender.setEncoder(echoEncoder);
36+
}
37+
38+
@Test
39+
public void smoke() {
40+
consoleAppender.setWithJansi(true);
41+
consoleAppender.start();
42+
43+
consoleAppender.doAppend("hello 1");
44+
45+
consoleAppender.stop();
46+
consoleAppender.start();
47+
consoleAppender.doAppend("hello 2");
48+
}
49+
}

0 commit comments

Comments
 (0)