Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for testProperty (0.23 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

            container1.attributeProvider(testAttribute, testProperty1)
            container2.attributeProvider(testAttribute, testProperty2)
    
            then:
            container1 == container2
            container2 == container1
        }
    
        def "equals should return false for 2 containers with different provider instances that return different values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/interpolation-cli-wins/pom.xml

      <description>
        Test that CLI properties specified by the user override project properties during interpolation.
      </description>
    
      <properties>
        <testProperty>FAILED</testProperty>
        <interpolatedProperty>${testProperty}</interpolatedProperty>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/signatureSubstitution/FirStandaloneNormalAnalysisSourceModuleAnalysisApiSignatureSubstitutionTestGenerated.java

      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureSubstitution/function.kt");
      }
    
      @Test
      @TestMetadata("property.kt")
      public void testProperty() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureSubstitution/property.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/signatureSubstitution/FirIdeNormalAnalysisSourceModuleAnalysisApiSignatureSubstitutionTestGenerated.java

      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureSubstitution/function.kt");
      }
    
      @Test
      @TestMetadata("property.kt")
      public void testProperty() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureSubstitution/property.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/signatureSubstitution/FirIdeNormalAnalysisSourceModuleAnalysisApiSymbolSubstitutionTestGenerated.java

      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/symbolSubstitution/function.kt");
      }
    
      @Test
      @TestMetadata("property.kt")
      public void testProperty() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/symbolSubstitution/property.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/signatureSubstitution/FirStandaloneNormalAnalysisSourceModuleAnalysisApiSymbolSubstitutionTestGenerated.java

      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/symbolSubstitution/function.kt");
      }
    
      @Test
      @TestMetadata("property.kt")
      public void testProperty() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/symbolSubstitution/property.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // output as a key/value string pair.
    //
    // Don't inherit from TestProperty as its destructor is not virtual.
    class TestProperty {
     public:
      // C'tor.  TestProperty does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestProperty object.
      TestProperty(const std::string& a_key, const std::string& a_value) :
        key_(a_key), value_(a_value) {
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // output as a key/value string pair.
    //
    // Don't inherit from TestProperty as its destructor is not virtual.
    class TestProperty {
     public:
      // C'tor.  TestProperty does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestProperty object.
      TestProperty(const std::string& a_key, const std::string& a_value) :
        key_(a_key), value_(a_value) {
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                    }
                } else {
                    propertyType = "String"
                    propertyValue = '"value"'
                }
                testMethods += """
                @Test
                public void testProperty$it() {
                    $propertyType value = $propertyValue;
                    objectUnderTest.setProperty$it(value);
                    assertEquals(value, objectUnderTest.getProperty$it());
                }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeNormalAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      public void testPrefixInc() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/prefixInc.kt");
      }
    
      @Test
      @TestMetadata("property.kt")
      public void testProperty() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/property.kt");
      }
    
      @Test
      @TestMetadata("resolvedSuper.kt")
      public void testResolvedSuper() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top