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

com.ndviet.keyword.GeneralUtils Maven / Gradle / Ivy

package com.ndviet.keyword;

import com.ndviet.library.log.LogHelpers;
import org.robotframework.javalib.annotation.ArgumentNames;
import org.robotframework.javalib.annotation.RobotKeyword;
import org.robotframework.javalib.annotation.RobotKeywords;
import org.robotframework.javalib.library.AnnotationLibrary;

import java.util.Arrays;

@RobotKeywords
public class GeneralUtils extends AnnotationLibrary {
    public GeneralUtils() {
        super(Arrays.asList("com/ndviet/keyword/GeneralUtils.class"));
    }

    @RobotKeyword
    @ArgumentNames({"object"})
    public static void prettyPrintObjectDetails(Object object) {
        LogHelpers.prettyPrintObjectDetails(object);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy