es.iti.wakamiti.fileuploader.TestCaseOutputFilesUploader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-uploader-wakamiti-plugin Show documentation
Show all versions of file-uploader-wakamiti-plugin Show documentation
Starter POM to Wakamiti plugins
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package es.iti.wakamiti.fileuploader;
import es.iti.commons.jext.Extension;
import es.iti.wakamiti.api.event.Event;
import es.iti.wakamiti.api.extensions.EventObserver;
@Extension(provider = "es.iti.wakamiti", name = "test-case-output-files-uploader", version = "2.5")
public class TestCaseOutputFilesUploader extends AbstractFilesUploader implements EventObserver {
public static final String CATEGORY = "testCaseOutputs";
public TestCaseOutputFilesUploader() {
super(Event.TEST_CASE_OUTPUT_FILE_WRITTEN, CATEGORY);
}
}