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

org.vebqa.vebtal.icomp.ImageStore Maven / Gradle / Ivy

Go to download

Tests for comparing images and provides user interfaces with junit / assertj or keyword driven approach

The newest version!
package org.vebqa.vebtal.icomp;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ImageStore {

	public static final Logger logger = LoggerFactory.getLogger(ImageStore.class);
	
	private static final ImageStore store = new ImageStore();
	
	private ImageDriver pdfDriver = new ImageDriver();
	
	public ImageStore() {
		logger.debug("Image Store created");
	}
	
	public static ImageStore getStore() {
		return store;
	}
	
	public ImageDriver getDriver() {
		return pdfDriver;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy