/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package edu.illinois.keshmesh.detector.tests.lck01j; import org.junit.Before; /** * * @author Samira Tasharofi * */ public class LCK01JTests { public static class LCK01JTest01 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("01", "A.java"); } } public static class LCK01JTest02 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("02", "A.java"); } } public static class LCK01JTest03 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("03", "A.java"); } } public static class LCK01JTest04 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("04", "A.java"); } } public static class LCK01JTest05 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("05", "A.java"); } } public static class LCK01JTest06 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("06", "A.java"); } } public static class LCK01JTest07 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("07", "A.java"); } } public static class LCK01JTest08 extends LCK01JTest { @Before public void setup() throws Exception { setupProjectAndAnalyze("08", "A.java"); } } }