Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GWTTestSuite (0.23 sec)

  1. guava-gwt/test/com/google/common/GwtTestSuite.java

    import com.google.gwt.junit.client.GWTTestCase;
    import com.google.gwt.junit.tools.GWTTestSuite;
    
    import junit.framework.Test;
    import junit.framework.TestCase;
    
    import java.io.IOException;
    
    /**
     * Runs all _gwt tests. Grouping them into a suite is much faster than running each as a one-test
     * "suite," as the per-suite setup is expensive.
     */
    public class GwtTestSuite extends TestCase {
      public static Test suite() throws IOException {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jun 23 13:24:59 GMT 2016
    - 1.6K bytes
    - Viewed (0)
  2. guava-gwt/pom.xml

                <goals>
                  <goal>test</goal>
                </goals>
                <configuration>
                  <module>com.google.common.GuavaTests</module>
                  <includes>**/GwtTestSuite.java</includes>
                  <logLevel>${gwt.logLevel}</logLevel>
                  <mode>htmlunit</mode>
                  <htmlunit>FF38</htmlunit>
                  <productionMode>true</productionMode>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
Back to top