jaroslav@1422: /** jaroslav@1422: * Back 2 Browser Bytecode Translator jaroslav@1422: * Copyright (C) 2012 Jaroslav Tulach jaroslav@1422: * jaroslav@1422: * This program is free software: you can redistribute it and/or modify jaroslav@1422: * it under the terms of the GNU General Public License as published by jaroslav@1422: * the Free Software Foundation, version 2 of the License. jaroslav@1422: * jaroslav@1422: * This program is distributed in the hope that it will be useful, jaroslav@1422: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@1422: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@1422: * GNU General Public License for more details. jaroslav@1422: * jaroslav@1422: * You should have received a copy of the GNU General Public License jaroslav@1422: * along with this program. Look for COPYING file in the top folder. jaroslav@1422: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@1422: */ jaroslav@1422: package org.apidesign.bck2brwsr.ko2brwsr; jaroslav@1422: jaroslav@1422: import org.apidesign.bck2brwsr.vmtest.VMTest; jaroslav@1422: import org.apidesign.html.json.tck.JavaScriptTCK; jaroslav@1422: import org.apidesign.html.json.tck.KOTest; jaroslav@1422: import org.testng.annotations.Factory; jaroslav@1422: jaroslav@1422: /** jaroslav@1422: * jaroslav@1422: * @author Jaroslav Tulach jaroslav@1422: */ jaroslav@1422: public class Bck2BrwsrJavaScriptBodyTest extends JavaScriptTCK { jaroslav@1422: @Factory public static Object[] tests() { jaroslav@1422: return VMTest.newTests().withClasses(testClasses()) jaroslav@1422: .withTestAnnotation(KOTest.class).build(); jaroslav@1422: } jaroslav@1422: }