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

templates.util.BlobUtilTest.ftl Maven / Gradle / Ivy

Go to download

Maven plugin to generate Java classes from StoredProcedure and Functions in Database

There is a newer version: 1.8.20
Show newest version
package ${javaPackage}.util;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.runners.MockitoJUnitRunner;

@RunWith(MockitoJUnitRunner.class)
public class BlobUtilTest {

    @InjectMocks
    BlobUtilImpl blobUtil;

    @Test
    public void testInputNull() {
        Assert.assertNull(blobUtil.process(null));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy