Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for scalatest (0.16 sec)

  1. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties

    commons-math=3.6.1
    commons-text=1.12.0
    groovy=3.0.21
    guava=33.2.1-jre
    junit-jupiter=5.10.2
    junit=4.13.2
    kotlin=2.0.0
    scala-library=2.13.14
    scala-xml=1.2.0
    scala=2.13
    scalatest=3.2.18
    scalatestplus-junit=3.2.2.0
    slf4j=2.0.13
    spock=2.2-groovy-3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 340 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Uses the “`mavenCentral`” dependency repository
    * Uses Scala 2.13
    * Uses http://www.scalatest.org[ScalaTest] for testing
    * Has directories in the conventional locations for source code
    * Contains a sample Scala class and an associated ScalaTest test suite, if there are no existing source or test files
    
    [[sec:scala_library]]
    === `scala-library` build type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaApplicationInitIntegrationTest.groovy

            then:
            failure.assertHasCause("""The requested test framework 'junit-4' is not supported for 'scala-application' build type. Supported frameworks:
      - 'scalatest'""")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        def "creates sample source with package and #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                                   cpptest
                                   junit
                                   junit-jupiter
                                   kotlintest
                                   scalatest
                                   spock
                                   testng
                                   xctest
    
         --type     Set the type of project to generate.
                    Available values are:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. tests/scan_test.go

    Waleed Masoom <******@****.***> 1718189856 -0400
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadata.java

            if (!artifact.isSnapshot()) {
                versioning.setRelease(artifact.getBaseVersion());
            }
            if ("maven-plugin".equals(artifact.getProperty(ArtifactProperties.TYPE, ""))) {
                versioning.setLatest(artifact.getBaseVersion());
            }
    
            metadata.setVersioning(versioning);
    
            return metadata;
        }
    
        @Override
        protected void merge(Metadata recessive) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. api/maven-api-metadata/src/main/mdo/metadata.mdo

                        v.setRelease( versioning.getRelease() );
                    }
                    if ( versioning.getLatest() != null )
                    {
                        changed = true;
                        v.setLatest( versioning.getLatest() );
                    }
    
                    Snapshot s = v.getSnapshot();
                    Snapshot snapshot = versioning.getSnapshot();
                    if ( snapshot != null )
                    {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top