Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 440 for rctest (0.09 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestExecutionResult.groovy

     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.TestExecutionResult
    
    trait XCTestExecutionResult {
        TestExecutionResult getTestExecutionResult() {
            return new DefaultTestExecutionResult(testDirectory, 'build', '', '', 'xcTest')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 965 bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestPluginIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest.plugins
    
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class XCTestPluginIntegrationTest extends WellBehavedPluginTest {
        @Override
        String getPluginName() {
            return "xctest"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 874 bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestWithApplicationDependenciesIntegrationTest.groovy

        protected String getProductionComponentDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [tasks(":lib").debug.allToLink]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/build.gradle

    plugins {
        id 'xctest'
    }
    
    // tag::test-filtering[]
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // include all tests from test class
                filter.includeTestsMatching "SomeIntegTest.*" // or `"Testing.SomeIntegTest.*"` on macOS
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for the XCTest plugins.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 713 bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins for XCTest testing.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 711 bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/PACTest.java

    import org.junit.Assert;
    import org.junit.Test;
    
    import jcifs.pac.PACDecodingException;
    import jcifs.pac.PacMac;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    @SuppressWarnings ( {
        "nls", "javadoc", "restriction"
    } )
    public class PACTest {
    
        @Test
        public void testNFold () {
            // rfc3961 test vectors
            verifyNfold(64, "012345", "be072631276b1955");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	"testing"
    )
    
    var Hosts = []string{
    	"vcs-test.golang.org",
    }
    
    type Server struct {
    	vcweb   *vcweb.Server
    	workDir string
    	HTTP    *httptest.Server
    	HTTPS   *httptest.Server
    }
    
    // NewServer returns a new test-local vcweb server that serves VCS requests
    // for modules with paths that begin with "vcs-test.golang.org" using the
    // scripts in cmd/go/testdata/vcstest.
    func NewServer() (srv *Server, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. src/go/build/testdata/directives/c_test.go

    //go:xtest1
    
    package p_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  10. src/internal/trace/gc_test.go

    		// utilizations.
    		if len(worst) != len(test.worst) {
    			t.Errorf("for %s window, want worst %v, got %v", test.window, test.worst, worst)
    		} else {
    			for i := range worst {
    				if worst[i].MutatorUtil != test.worst[i] {
    					t.Errorf("for %s window, want worst %v, got %v", test.window, test.worst, worst)
    					break
    				}
    			}
    		}
    	}
    }
    
    func TestMMUTrace(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top