Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,184 for Jupiter (0.11 sec)

  1. analysis/analysis-api-impl-barebone/tests/org/jetbrains/kotlin/analysis/api/impl/barebone/test/AbstractCompilerBasedTest.kt

    import org.jetbrains.kotlin.test.TestConfiguration
    import org.jetbrains.kotlin.test.runners.AbstractKotlinCompilerTest
    import org.jetbrains.kotlin.test.services.isKtFile
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.TestInfo
    
    abstract class AbstractCompilerBasedTest : AbstractKotlinCompilerTest() {
        private var _disposable: Disposable? = null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 10:30:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/BuildListCalculatorTest.java

    import org.apache.maven.lifecycle.internal.stub.ProjectDependencyGraphStub;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertSame;
    
    class BuildListCalculatorTest {
    
        @Test
        void testCalculateProjectBuilds() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformFilteringIntegrationTest.groovy

        }
    
        def 'can use nested class as test pattern'() {
            given:
            file('src/test/java/EnclosingClass.java') << '''
                import org.junit.jupiter.api.Test;
                import org.junit.jupiter.api.Nested;
                import static org.junit.jupiter.api.Assertions.assertEquals;
    
                class EnclosingClass {
                    @Nested
                    class NestedClass {
                        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/basic/kotlin/src/test/java/org/gradle/PersonTest.java

    package org.gradle;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.*;
    
    public class PersonTest {
        @Test
        public void canConstructAPersonWithAName() {
            Person person = new Person("Larry");
            assertEquals("Larry", person.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 295 bytes
    - Viewed (0)
  5. mockwebserver-junit5/src/test/java/mockwebserver3/junit5/internal/ExtensionMultipleInstancesTest.kt

    import assertk.assertThat
    import assertk.assertions.isEqualTo
    import assertk.assertions.isNotEqualTo
    import assertk.assertions.isTrue
    import mockwebserver3.MockWebServer
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Test
    
    class ExtensionMultipleInstancesTest {
      var defaultInstancePort: Int = -1
      var instanceAPort: Int = -1
      var instanceBPort: Int = -1
    
      @BeforeEach
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestListenerBuildOperationAdapterIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.jupiter
    
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.testing.AbstractTestListenerBuildOperationAdapterIntegrationTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/junitjupiter/AppTest.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Assertions.assertNotNull
    
    class AppTest {
        @Test
        fun appHasAGreeting() {
            val classUnderTest = App()
            assertNotNull(classUnderTest.greeting, "app should have a greeting")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 06:44:27 UTC 2024
    - 319 bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-barebone/build.gradle.kts

        api(project(":analysis:project-structure"))
        api(intellijCore())
    
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
        testImplementation(kotlinTest("junit"))
        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 763 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/junitjupiter/AppTest.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import org.junit.jupiter.api.Test;
    import static org.junit.jupiter.api.Assertions.*;
    
    class AppTest {
        @Test void appHasAGreeting() {
            App classUnderTest = new App();
            assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 328 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/basic/groovy/src/intTest/java/org/gradle/PersonIntTest.java

    package org.gradle;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.*;
    
    public class PersonIntTest {
        @Test
        public void canConstructAPersonWithAName() {
            Person person = new Person("Larry");
            assertEquals("Larry", person.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 298 bytes
    - Viewed (0)
Back to top