// ============================================================================ // // Copyright (C) 2006-2015 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.dataquality.indicators.impl; import org.junit.Assert; import org.junit.Test; import org.talend.dataquality.indicators.IndicatorsFactory; import org.talend.dataquality.indicators.MinValueIndicator; /** * created by yyin on 2016年5月12日 Detailled comment * */ public class MinValueIndicatorImplTest { /** * Test method for {@link org.talend.dataquality.indicators.impl.MinValueIndicatorImpl#handle(java.lang.Object)}. */ @Test public void testHandleObject() { MinValueIndicator minValueIndicator = IndicatorsFactory.eINSTANCE.createMinValueIndicator(); Object data = null; Assert.assertTrue(minValueIndicator.handle(data)); } }