-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
logback-classic/src/test/java/ch/qos/logback/classic/issue/logback_1759/Logback1759Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Logback: the reliable, generic, fast and flexible logging framework. | ||
* Copyright (C) 1999-2024, QOS.ch. All rights reserved. | ||
* | ||
* This program and the accompanying materials are dual-licensed under | ||
* either the terms of the Eclipse Public License v1.0 as published by | ||
* the Eclipse Foundation | ||
* | ||
* or (per the licensee's choosing) | ||
* | ||
* under the terms of the GNU Lesser General Public License version 2.1 | ||
* as published by the Free Software Foundation. | ||
*/ | ||
|
||
package ch.qos.logback.core.issue.logback_1759; | ||
|
||
import ch.qos.logback.core.ConsoleAppender; | ||
import ch.qos.logback.core.Context; | ||
import ch.qos.logback.core.ContextBase; | ||
import ch.qos.logback.core.encoder.EchoEncoder; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class Logback1759Test { | ||
|
||
Context context = new ContextBase(); | ||
EchoEncoder echoEncoder = new EchoEncoder(); | ||
ConsoleAppender consoleAppender = new ConsoleAppender(); | ||
|
||
@BeforeEach | ||
public void setup() { | ||
consoleAppender.setContext(context); | ||
echoEncoder.setContext(context); | ||
echoEncoder.start(); | ||
consoleAppender.setEncoder(echoEncoder); | ||
} | ||
|
||
@Test | ||
public void smoke() { | ||
consoleAppender.setWithJansi(true); | ||
consoleAppender.start(); | ||
|
||
consoleAppender.doAppend("hello 1"); | ||
|
||
consoleAppender.stop(); | ||
consoleAppender.start(); | ||
consoleAppender.doAppend("hello 2"); | ||
} | ||
} |