25 lines
578 B
Java
25 lines
578 B
Java
package jmri.jmrit.operations.setup.backup;
|
|
|
|
import java.io.File;
|
|
|
|
import jmri.jmrit.operations.OperationsTestCase;
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
import org.junit.jupiter.api.io.TempDir;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class BackupSetTest extends OperationsTestCase {
|
|
|
|
@Test
|
|
public void testCTor(@TempDir File folder) {
|
|
BackupSet t = new BackupSet(folder);
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(BackupSetTest.class.getName());
|
|
|
|
}
|