[build script tests] refactoring: use the proper package name for intellij.platform.buildScripts.testFramework module

GitOrigin-RevId: 373d1e28ec0a42bad3568d49d3e658b21f5aceba
This commit is contained in:
Nikolay Chashnikov
2023-04-12 15:09:32 +02:00
committed by intellij-monorepo-bot
parent bf54a9b245
commit ae543ac464
6 changed files with 13 additions and 12 deletions

View File

@@ -6,8 +6,8 @@ import com.intellij.util.SystemProperties
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.runBlocking
import org.jetbrains.intellij.build.impl.BuildContextImpl
import org.jetbrains.intellij.build.testFramework.createBuildOptionsForTest
import org.jetbrains.intellij.build.testFramework.runTestBuild
import com.intellij.platform.buildScripts.testFramework.createBuildOptionsForTest
import com.intellij.platform.buildScripts.testFramework.runTestBuild
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInfo

View File

@@ -1,7 +1,7 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
@file:Suppress("ReplaceGetOrSet")
package org.jetbrains.intellij.build.testFramework
package com.intellij.platform.buildScripts.testFramework
import com.intellij.openapi.application.PathManager
import kotlinx.coroutines.Dispatchers

View File

@@ -1,7 +1,8 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.intellij.build
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.platform.buildScripts.testFramework
import org.assertj.core.api.SoftAssertions
import org.jetbrains.intellij.build.LibraryLicense
import org.jetbrains.intellij.build.impl.LibraryLicensesListGenerator
import org.jetbrains.jps.model.JpsProject
import org.jetbrains.jps.model.java.JpsJavaClasspathKind

View File

@@ -1,5 +1,5 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.intellij.build.testFramework.binaryReproducibility
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.platform.buildScripts.testFramework.binaryReproducibility
import com.intellij.openapi.util.io.NioFiles
import kotlinx.coroutines.channels.Channel

View File

@@ -1,7 +1,7 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
@file:Suppress("LiftReturnOrAssignment")
package org.jetbrains.intellij.build.testFramework
package com.intellij.platform.buildScripts.testFramework
import com.intellij.diagnostic.telemetry.useWithScope2
import com.intellij.openapi.diagnostic.Logger
@@ -22,7 +22,7 @@ import org.jetbrains.intellij.build.dependencies.BuildDependenciesCommunityRoot
import org.jetbrains.intellij.build.impl.BuildContextImpl
import org.jetbrains.intellij.build.impl.buildDistributions
import org.jetbrains.intellij.build.impl.logging.BuildMessagesImpl
import org.jetbrains.intellij.build.testFramework.binaryReproducibility.BuildArtifactsReproducibilityTest
import com.intellij.platform.buildScripts.testFramework.binaryReproducibility.BuildArtifactsReproducibilityTest
import org.opentest4j.TestAbortedException
import java.net.http.HttpConnectTimeoutException
import java.nio.file.Files

View File

@@ -5,7 +5,7 @@ import com.intellij.openapi.application.PathManager
import com.intellij.util.io.Compressor
import org.jetbrains.intellij.build.BuildOptions
import org.jetbrains.intellij.build.dependencies.BuildDependenciesCommunityRoot
import org.jetbrains.intellij.build.testFramework.runTestBuild
import com.intellij.platform.buildScripts.testFramework.runTestBuild
import org.junit.Test
import java.nio.file.Files
import java.nio.file.Path