ad1571fcd0
follow jar dependancies.
35 lines
561 B
Java
35 lines
561 B
Java
package org.dclermonte.siba.model;
|
|
|
|
import java.io.IOException;
|
|
|
|
import org.apache.commons.compress.archivers.ArchiveException;
|
|
import org.testng.Assert;
|
|
import org.testng.annotations.Test;
|
|
|
|
/**
|
|
*
|
|
* @author cpm
|
|
*/
|
|
public class SibaManagerTest
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
@Test
|
|
public void aFooTest()
|
|
{
|
|
Assert.assertTrue(true);
|
|
}
|
|
|
|
/**
|
|
* @throws IOException
|
|
* @throws ArchiveException
|
|
*
|
|
*/
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void backupTest01() throws ArchiveException, IOException
|
|
{
|
|
SibaManager.backup(null, null);
|
|
}
|
|
}
|