Update copyright in generated tests

This commit is contained in:
Dmitry Jemerov
2018-01-10 11:27:36 +01:00
parent 5ec5807399
commit e80dae1802
283 changed files with 570 additions and 3643 deletions
@@ -49,7 +49,14 @@ class TestGenerator(
val out = StringBuilder()
val p = Printer(out)
p.println(File("license/LICENSE.txt").readText(Charsets.UTF_8))
val year = GregorianCalendar()[Calendar.YEAR]
p.println(
"""/*
| * Copyright 2000-$year JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
| * that can be found in the license/LICENSE.txt file.
| */
|""".trimMargin()
)
p.println("package ", suiteClassPackage, ";")
p.println()
p.println("import com.intellij.testFramework.TestDataPath;")