Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PassingTest (0.18 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/test/IntegrationSpec.scala

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import org.junit._
    
    class IntegrationSpec  {
      @Test 
      def passingTest() {
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 699 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/test/ApplicationSpec.scala

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import org.junit._
    
    class ApplicationSpec  {
      @Test 
      def passingTest() {
      }
      @Test 
      def passingTest2() {
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
  3. native-image-tests/src/main/kotlin/okhttp3/SampleTest.kt

    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class SampleTest {
      @JvmField @RegisterExtension
      val clientRule = OkHttpClientTestRule()
    
      @Test
      fun passingTest() {
        assertThat("hello").isEqualTo("hello")
      }
    
      @Test
      fun testMockWebServer(server: MockWebServer) {
        server.enqueue(MockResponse(body = "abc"))
    
        val client = clientRule.newClient()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            given:
            file('src/test/java/PoisonTest.java') << """
                import org.testng.annotations.Test;
    
                public class PoisonTest {
                    @Test public void passingTest() { }
    
                    @Test public void testWithUnserializableException() {
                        if (true) {
                            throw new UnserializableException();
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top