tests: Rename some files because windows is dumb and they're too long I guess

This commit is contained in:
Nathan Adams 2023-08-12 17:15:17 +02:00
parent 0591fd882a
commit d9847d0167
6 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ import flash.display.MovieClip;
public class Test extends MovieClip {}
}
import UserDefinedErrorsPackageWithoutMatchingCatch.*;
import testpackage.*;
// var SECTION = "Definitions"; // provide a document reference (ie, ECMA section)
// var VERSION = "AS3"; // Version of JavaScript or ECMA

View File

@ -1,9 +1,9 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch{
package testpackage {
import UserDefinedErrorsPackageWithoutMatchingCatch2.*;
import testpackage2.*;
import com.adobe.test.Assert;
public class TryAndCatchBlockWithUserDefinedErrorsWithoutMatchingcatch
{

View File

@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2
package testpackage2
{
public class Box
{

View File

@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {
public class BoxDimensionException extends Error {
public function BoxDimensionException(boxErrMsg: String) {

View File

@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {
public class BoxOverflowException extends BoxDimensionException {
public function BoxOverflowException(boxErrMsg3: String) {

View File

@ -1,7 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package UserDefinedErrorsPackageWithoutMatchingCatch2 {
package testpackage2 {
public class BoxUnderzeroException extends BoxDimensionException {