All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.appium.utils.FigletHelper Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
package com.appium.utils;

import com.github.lalyos.jfiglet.FigletFont;
import org.apache.log4j.Logger;

import java.io.IOException;

public class FigletHelper {
    private static final Logger LOGGER = Logger.getLogger(FigletHelper.class.getName());

    public static void figlet(String text) {
        String asciiArt1 = null;
        try {
            asciiArt1 = FigletFont.convertOneLine(text);
        } catch (IOException e) {
            e.printStackTrace();
        }
        LOGGER.info(asciiArt1);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy