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

com.github.karsaig.approvalcrest.jupiter.matcher.MatcherFactory Maven / Gradle / Ivy

The newest version!
package com.github.karsaig.approvalcrest.jupiter.matcher;

import com.github.karsaig.approvalcrest.FileMatcherConfig;
import com.github.karsaig.approvalcrest.matcher.ContentMatcher;
import com.github.karsaig.approvalcrest.matcher.DiagnosingCustomisableMatcher;
import com.github.karsaig.approvalcrest.matcher.JsonMatcher;
import com.github.karsaig.approvalcrest.matcher.TestMetaInformation;

class MatcherFactory extends com.github.karsaig.approvalcrest.matcher.MatcherFactory {

    @Override
    protected  DiagnosingCustomisableMatcher beanMatcher(T expected) {
        return super.beanMatcher(expected);
    }

    @Override
    protected  JsonMatcher jsonMatcher(TestMetaInformation testMetaInformation, FileMatcherConfig fileMatcherConfig) {
        return super.jsonMatcher(testMetaInformation, fileMatcherConfig);
    }

    @Override
    protected  ContentMatcher contentMatcher(TestMetaInformation testMetaInformation, FileMatcherConfig fileMatcherConfig) {
        return super.contentMatcher(testMetaInformation, fileMatcherConfig);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy