/* * (C) Copyright 2010-2015 SAP SE. * 2016 The University of Sheffield. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * */ package com.logicalhacking.dasca.dataflow.test; import static org.junit.Assert.assertEquals; import java.io.IOException; import org.junit.Before; import org.junit.Test; import com.ibm.wala.util.CancelException; import com.logicalhacking.dasca.dataflow.util.SuperGraphUtil; public class Test14 { String entryClass = "Test14"; @Before public void initTest() throws IllegalArgumentException, CancelException, IOException { TestSuite.initTestSG(entryClass); } @Test public void testBad() throws IllegalArgumentException, CancelException, IOException { int result = SuperGraphUtil.analyzeAndSaveSuperGraph(TestSuite.superGraph, entryClass, "bad"); assertEquals(1, result); return; } @Test public void testGood01() throws IllegalArgumentException, CancelException, IOException { int result = SuperGraphUtil.analyzeAndSaveSuperGraph(TestSuite.superGraph, entryClass, "good01"); assertEquals(0, result); return; } @Test public void testGood02() throws IllegalArgumentException, CancelException, IOException { int result = SuperGraphUtil.analyzeAndSaveSuperGraph(TestSuite.superGraph, entryClass, "good02"); assertEquals(0, result); return; } }