Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for xcTest (0.25 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            // TODO: This isn't done yet, we still realize many tasks
            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
                'xctest', // Almost, still realizes compileTestSwift
    
                'visual-studio',
                'xcode',
    
                'play-application',
            ])
    
            applyPlugin()
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

                public func hola() -> String {
                    return "Hola, Mundo!"
                }
            """
            subprojectDir.file("src/test/swift/HolaTests.swift") << """
                import XCTest
                @testable import Lib
                class HolaTests: XCTestCase {
                    public static var allTests = [
                        ("testGreeting", testGreeting),
                    ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftApplicationInitIntegrationTest.groovy

                    return "Hola, Mundo!"
                }
    
                print(hola())
            """
            subprojectDir.file("src/test/swift/HolaTests.swift") << """
                import XCTest
                @testable import App
    
                class HolaTests: XCTestCase {
                    public static var allTests = [
                        ("testGreeting", testGreeting),
                    ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestDescriptor.java

     * 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.nativeplatform.test.xctest.internal.execution;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.tasks.RunTestExecutable</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.xctest.tasks.XCTest</td>
                </tr>
            </table>
        </section>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                                   kotlintest
                                   scalatest
                                   spock
                                   testng
                                   xctest
    
         --type     Set the type of project to generate.
                    Available values are:
                         basic
                         cpp-application
                         cpp-library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.test.xctest.internal.DefaultSwiftXCTestExecutable> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultSwiftXCTestExecutable.java:0)
    Class <org.gradle.nativeplatform.test.xctest.internal.DefaultSwiftXCTestSuite> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultSwiftXCTestSuite.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    // TestCreatePodSandbox_RuntimeClass tests creating sandbox with RuntimeClasses enabled.
    func TestCreatePodSandbox_RuntimeClass(t *testing.T) {
    	ctx := context.Background()
    	rcm := runtimeclass.NewManager(rctest.NewPopulatedClient())
    	defer rctest.StartManagerSync(rcm)()
    
    	fakeRuntime, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    	m.runtimeClassManager = rcm
    
    	tests := map[string]struct {
    		rcn             *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    				// To parse the expression starting with name, expand
    				// the call sequence we would get by passing in name
    				// to parser.expr, and pass in name to parser.pexpr.
    				p.xnest++
    				x = p.binaryExpr(p.pexpr(x, false), 0)
    				p.xnest--
    			}
    			// Analyze expression x. If we can split x into a type parameter
    			// name, possibly followed by a type parameter type, we consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/go/types/initorder.go

    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top