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

com.lordofthejars.nosqlunit.couchdb.DefaultCouchDbComparisonStrategy Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.couchdb;

import java.io.InputStream;

import com.lordofthejars.nosqlunit.core.NoSqlAssertionError;

public class DefaultCouchDbComparisonStrategy implements CouchDbComparisonStrategy {

	@Override
	public boolean compare(CouchDbConnectionCallback connection, InputStream dataset) throws NoSqlAssertionError, Throwable {
		CouchDbAssertion.strictAssertEquals(dataset, connection.couchDbConnector());
		return true;
	}

    @Override
    public void setIgnoreProperties(String[] ignoreProperties) {
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy