Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestFileHelper (0.16 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

    import java.util.zip.ZipInputStream
    
    import static org.hamcrest.CoreMatchers.equalTo
    import static org.hamcrest.MatcherAssert.assertThat
    import static org.junit.Assert.assertTrue
    
    class TestFileHelper {
        TestFile file
    
        TestFileHelper(TestFile file) {
            this.file = file
        }
    
        void unzipTo(File target, boolean nativeTools, boolean checkParentDirs = true) {
            // Check that each directory in hierarchy is present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            assertIsFile();
            new TestFileHelper(this).unzipTo(target, useNativeTools);
        }
    
        public void unzipToWithoutCheckingParentDirs(File target) {
            assertIsFile();
            new TestFileHelper(this).unzipTo(target, useNativeTools, false);
        }
    
        public void untarTo(File target) {
            assertIsFile();
    
            new TestFileHelper(this).untarTo(target, useNativeTools);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

    import org.gradle.nativeplatform.fixtures.msvcpp.VisualStudioLocatorTestFixture;
    import org.gradle.test.fixtures.file.ExecOutput;
    import org.gradle.test.fixtures.file.TestFile;
    import org.gradle.test.fixtures.file.TestFileHelper;
    
    import java.io.File;
    import java.io.IOException;
    import java.nio.charset.Charset;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top