Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for cunit (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheGroovyIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "build on Groovy project with JUnit tests"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                plugins { id 'groovy' }
    
                ${mavenCentralRepository()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.time)
        api(project(":base-services"))
        api(project(":messaging"))
        api(project(":testing-base-infrastructure"))
    
        api(libs.jsr305)
        api(libs.junit)
        api(libs.testng)
        api(libs.bsh) {
            because("""We need to create a capability conflict between "org.beanshell:bsh", and "org.beanshell:beanshell" by explicitly including this lib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. maven-core/pom.xml

          <scope>provided</scope>
        </dependency>
    
        <!-- Test -->
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-params</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
                      "showPoints": "never"
                   },
                   "unit": "bytes"
                }
             },
             "gridPos": {
                "h": 8,
                "w": 8,
                "x": 8,
                "y": 1
             },
             "id": 3,
             "interval": "5s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. testing/performance/build.gradle.kts

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

    import org.apache.maven.jline.JLineMessageBuilderFactory;
    import org.apache.maven.jline.MessageUtils;
    import org.apache.maven.project.MavenProject;
    import org.junit.jupiter.api.AfterAll;
    import org.junit.jupiter.api.BeforeAll;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    import org.mockito.InOrder;
    import org.mockito.Mockito;
    import org.slf4j.Logger;
    
    import static org.mockito.ArgumentMatchers.matches;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.gen.json

                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
                      "showPoints": "never"
                   },
                   "unit": "bytes"
                }
             },
             "gridPos": {
                "h": 10,
                "w": 6,
                "x": 0,
                "y": 2
             },
             "id": 4,
             "interval": "5s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/FunctionCodecTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.serialization.codecs
    
    import org.junit.Test
    
    
    class FunctionCodecTest : AbstractFunctionalTypeTest() {
    
        @Test
        fun `defers evaluation of Function objects`() {
            assertDeferredEvaluationOf(function()) {
                invoke()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. maven-embedder/src/test/java/org/apache/maven/cli/transfer/SimplexTransferListenerTest.java

    import org.eclipse.aether.transfer.TransferEvent;
    import org.eclipse.aether.transfer.TransferListener;
    import org.eclipse.aether.transfer.TransferResource;
    import org.junit.jupiter.api.Test;
    import org.mockito.Mockito;
    
    import static org.junit.jupiter.api.Assertions.assertThrows;
    
    class SimplexTransferListenerTest {
        @Test
        void cancellation() throws InterruptedException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val STRING: KaType
            get() = string
    
        public abstract val unit: KaType
    
        @Deprecated("Use 'unit' instead.", replaceWith = ReplaceWith("unit"))
        public val UNIT: KaType
            get() = unit
    
        public abstract val nothing: KaType
    
        @Deprecated("Use 'nothing' instead.", replaceWith = ReplaceWith("nothing"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top